@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Noto+Sans+JP:wght@400;500&display=swap');

html {
    font-size: 62.5%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow-y: scroll;
}
body {
    font-family: "Noto Sans JP","メイリオ",sans-serif;
    letter-spacing: 0.08em;
    height: 100%;
    font-weight: 400;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #222222;
}

video {
    outline: none;
    border: none;
    padding: 10px;
    filter: drop-shadow(0px 0px #000);
}
video filter  {
    filter: drop-shadow(0px 0px #000);
    filter: 0 ;
}


ol,
ul,
li,
dd,
dt,
dl,
h1,
h2,
h3,
h4,
h5,
h6,
h7,
h8,
h9,
p,
span,
img,
video,
input,
form,
textarea,
table,
tr,
td {
    margin: 0px;
    padding: 0px;
    list-style-image: none;
    list-style-type: none;
    border: none;
}

canvas {
    margin: 0px;
    padding: 0px;
    border: none;
    vertical-align: bottom;
}

img {
    border: none;
}

a {
    text-decoration: none;
}
button:focus ,
a:focus {
    outline: none;
    text-decoration: none;
    cursor: pointer;
}
::selection {
    background: #000;
    color: #fff;
}
::-moz-selection {
    background: #222222;
    color: #fff;
}
img::selection {
    background: none;
}
img::-moz-selection {
    background: none;
}

sup,
sub {
    height: 0;
    line-height: 1;
    vertical-align: baseline;
    _vertical-align: bottom;
    position: relative;
}
sup {bottom: 1ex;}
sub {top: .5ex;}





/*loading*/
#loading-area{
    z-index: 99999;
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: none;
    visibility: visible;
}
.standBy #loading-area{
    transition-delay: 0.2s;
    transition-duration: 1s;
    opacity: 0;
    visibility: hidden;
}
#loading-area span{
    font-family: sans-serif;
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 20px;
    text-align: center;
    font-size: 11px;
    line-height: 13px;
    margin-left: -100px;
    margin-top: -10px;
    
    animation-name: loadingText;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    opacity: 0.3;
}

@keyframes loadingText{
    0%{opacity: 0.3;}
    33%{opacity: 1;}
    66%{opacity: 1;}
    100%{opacity: 0.3;}
}
.standBy #loading-area span{
    transition-duration: 0.4s;
    opacity: 0;
    visibility: hidden;
}


/*SPLASH start*/
#splash-area{

    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    /*            background-image: url(assets/img/kv.jpg);*/
    /*            filter: blur(10px);*/
    -webkit-backdrop-filter: blur(80px);
    backdrop-filter: blur(80px);  
    background-size: cover;
    background-position: center center;
    background-color: rgba(0,50,53,0.1);
    /*            background-color: #035055;*/
    z-index: 10000;
    background-color: rgba(0,21,27,0.5);
}
.standBy #splash-area{
    animation-name: splashArea;
    animation-duration: 9s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@media (orientation: landscape) {
    /* Firefox */
    @-moz-document url-prefix() {
        .standBy #splash-area{
            background-image: url(../img/kv-landscape-blur.jpg);
        }
    }
    /* IE11 */
    _:-ms-lang(x)::-ms-backdrop, .standBy #splash-area{
        background-image: url(../img/kv-landscape-blur.jpg);
    }
}

@media (orientation: portrait) {
    /* Firefox */
    @-moz-document url-prefix() {
        .standBy #splash-area{
            background-image: url(../img/kv-portrait-blur.jpg);
        }
    }
    /* IE11 */
    _:-ms-lang(x)::-ms-backdrop, .standBy #splash-area{
        background-image: url(../img/kv-portrait-blur.jpg);
    }
}



/* SPLASH Animation*/
@keyframes splashArea{
    0%{visibility: visible; opacity: 1;}
    70%{visibility: visible; opacity: 1; -webkit-backdrop-filter: blur(80px); backdrop-filter: blur(80px); }
    85%{visibility: visible; opacity: 0.5; -webkit-backdrop-filter: blur(0px); backdrop-filter: blur(0px); }
/*    100%{visibility: visible; opacity: 1; -webkit-backdrop-filter: blur(0px); backdrop-filter: blur(0px); }*/
    100%{visibility: hidden; opacity: 0; -webkit-backdrop-filter: blur(0px); backdrop-filter: blur(0px); }
}


.standBy #splash-waterdrop {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -130px;
    margin-left: -20px;

    animation-name: splashWaterDrop;
    animation-duration: 2.5s;
    animation-timing-function: linear;
    animation-timing-function: cubic-bezier(.32,0,.41,.04);
    animation-fill-mode: forwards;
    transform: translateY(0px);
    
}
@keyframes splashWaterDrop{
    0%{ transform: translateY(0px);}
    100%{ transform: translateY(200px);}
}
.standBy #splash-waterdrop- {
    animation-name: splashWaterDrop2;
    animation-duration: 2.5s;
/*    animation-iteration-count: infinite;*/
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes splashWaterDrop2{
    0%{ opacity: 0;}
    10%{ opacity: 0.3;}
    90%{ opacity: 0.9;}
    100%{ opacity: 0;}
}


.standBy #splash-six-filters {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 193px;
    margin-top: -100px;
    margin-left: -70px;
    animation-name: splashSixFiltersOuter;
    animation-duration: 10s;
    animation-fill-mode: forwards;
}
@keyframes splashSixFiltersOuter{
    0%{ opacity: 1;}
    62%{ opacity: 1;}
    66%{ opacity: 0;}
    100%{ opacity: 0;}
}

.standBy #splash-six-filters div {
    margin-left: auto;
    margin-right: auto;
    width: 140px;
    height: 4px;
    background-color: #fff;
    position: absolute;
    bottom: 0px;
    left: 0px;
/*    margin-top: 13px;*/
    
    
    animation-duration: 10s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;

    opacity: 0.1;
    transform: translate(0px,0px) rotate(0deg);
    transform-origin: center bottom;
}

.standBy #splash-six-filters div:nth-child(1) {animation-name: splashSixFilters1; animation-delay: 0.0s; transform: translate(0px,-150px) rotate(0deg);}
.standBy #splash-six-filters div:nth-child(2) {animation-name: splashSixFilters2; animation-delay: 0.2s; transform: translate(0px,-125px) rotate(0deg);}
.standBy #splash-six-filters div:nth-child(3) {animation-name: splashSixFilters3; animation-delay: 0.45s; transform: translate(0px,-100px) rotate(0deg);}
.standBy #splash-six-filters div:nth-child(4) {animation-name: splashSixFilters4; animation-delay: 0.75s; transform: translate(0px,-75px) rotate(0deg);}
.standBy #splash-six-filters div:nth-child(5) {animation-name: splashSixFilters5; animation-delay: 0.95s; transform: translate(0px,-50px) rotate(0deg);}
.standBy #splash-six-filters div:nth-child(6) {animation-name: splashSixFilters6; animation-delay: 1.2s; transform: translate(0px,-25px) rotate(0deg);}

/*
#splash-six-filters div:nth-child(1) {animation-delay: 0s; animation-name: splashSixFilters1;}
#splash-six-filters div:nth-child(2) {animation-delay: 0.5s; animation-name: splashSixFilters2;}
#splash-six-filters div:nth-child(3) {animation-delay: 1s; animation-name: splashSixFilters3;}
#splash-six-filters div:nth-child(4) {animation-delay: 1.5s; animation-name: splashSixFilters4;}
#splash-six-filters div:nth-child(5) {animation-delay: 2s; animation-name: splashSixFilters5;}
#splash-six-filters div:nth-child(6) {animation-delay: 2.5s; animation-name: splashSixFilters6;}
*/





@keyframes splashSixFilters1{
    0%{ opacity: 0.1;}
    5%{ opacity: 0.1;}
    10%{ opacity: 0.1;}
    15%{ opacity: 1.0; width: 140px;}
    25%{ opacity: 1.0; width: 140px; transform: translate(0px,-150px) rotate(0deg); }
    36%{ opacity: 1.0; width: 22px; transform: translate(-3px,0px) rotate(90deg); }
    100%{ opacity: 1.0; width: 22px; transform: translate(-3px,0px) rotate(90deg); }
}
@keyframes splashSixFilters2{
    0%{ opacity: 0.1;}
    5%{ opacity: 0.1;}
    10%{ opacity: 0.1;}
    15%{ opacity: 1.0; width: 140px;}
    25%{ opacity: 1.0; width: 140px; transform: translate(0px,-125px) rotate(0deg); }
    36%{ opacity: 1.0; width: 22px; transform: translate(30px,0px) rotate(90deg); }
    100%{ opacity: 1.0; width: 22px; transform: translate(30px,0px) rotate(90deg); }
}
@keyframes splashSixFilters3{
    0%{ opacity: 0.1;}
    5%{ opacity: 0.1;}
    10%{ opacity: 0.1;}
    15%{ opacity: 1.0; width: 140px;}
    25%{ opacity: 1.0; width: 140px; transform: translate(0px,-100px) rotate(0deg); }
    36%{ opacity: 1.0; width: 22px; transform: translate(59px,0px) rotate(90deg); }
    100%{ opacity: 1.0; width: 22px; transform: translate(59px,0px) rotate(90deg); }
}
@keyframes splashSixFilters4{
    0%{ opacity: 0.1;}
    5%{ opacity: 0.1;}
    10%{ opacity: 0.1;}
    15%{ opacity: 1.0; width: 140px;}
    25%{ opacity: 1.0; width: 140px; transform: translate(0px,-75px) rotate(0deg); }
    36%{ opacity: 1.0; width: 22px; transform: translate(70px,0px) rotate(90deg); }
    100%{ opacity: 1.0; width: 22px; transform: translate(70px,0px) rotate(90deg); }
}
@keyframes splashSixFilters5{
    0%{ opacity: 0.1;}
    5%{ opacity: 0.1;}
    10%{ opacity: 0.1;}
    15%{ opacity: 1.0; width: 140px;}
    25%{ opacity: 1.0; width: 140px; transform: translate(0px,-50px) rotate(0deg); }
    36%{ opacity: 1.0; width: 22px; transform: translate(120px,0px) rotate(90deg); }
    100%{ opacity: 1.0; width: 22px; transform: translate(120px,0px) rotate(90deg); }
}
@keyframes splashSixFilters6{
    0%{ opacity: 0.1;}
    5%{ opacity: 0.1;}
    10%{ opacity: 0.1;}
    15%{ opacity: 1.0; width: 140px;}
    25%{ opacity: 1.0; width: 140px; transform: translate(0px,-25px) rotate(0deg); }
    36%{ opacity: 1.0; width: 22px; transform: translate(133px,0px) rotate(90deg); }
    100%{ opacity: 1.0; width: 22px; transform: translate(133px,0px) rotate(90deg); }
}


/*INFINITY*/
#svg-animation .st0{
    
    fill:none;
    stroke:#FFFFFF;
    stroke-width:12;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-miterlimit:10;
    stroke-dasharray: 1500;
    stroke-dashoffset:1500;
}
.standBy #svg-animation{
    max-width: 100%;
    height: auto;
    
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    visibility: hidden;

    animation-name: svgMugen;
    animation-fill-mode: forwards;
    animation-duration: 10s;
    opacity: 0;
}
@keyframes svgMugen{
    0%{opacity: 0; visibility: visible;}
    9%{opacity: 0; visibility: visible;}
    10%{opacity: 1; visibility: visible;}
    62%{opacity: 1; visibility: visible;}
    66%{opacity: 0; visibility: visible;}
    100%{opacity: 0; visibility: hidden;}
}

#logotype-lack {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -92px;
    margin-top: 81px;
    width: 186px;
    height: auto;
    opacity: 0;
}
.standBy #logotype-lack{
    transform: translateY(40px);

    animation-name: logotypeLack;
    animation-fill-mode: forwards;
    animation-duration: 4s;
    animation-delay: 3s;
}
@keyframes logotypeLack{
    0%{opacity: 0; transform: translateY(40px);}
    38%{opacity: 1; transform: translateY(0px);}
    80%{opacity: 1; transform: translateY(0px);}
    90%{opacity: 0; transform: translateY(0px);}
    100%{opacity: 0; transform: translateY(0px);}
}




.attention-list li,
.honbun,
.caption-honbun{
    font-weight: 400;
    font-feature-settings: "palt";
    text-align:justify;
}
h2,h3,h4,h5{font-weight: 500;    font-feature-settings: "palt";
}

#kv-area{
    display: block;
    width: 100%;
    height: 100vh;
    position: relative;
    background-size: cover;
/*    background-position: center calc(50% + 250px);*/
    padding: 0;
}
@media (orientation: landscape) {
    #kv-area{
        background-image: url(../img/kv-landscape.jpg);
        background-size: cover;
        background-position: center top;
    }
}

@media (orientation: portrait) {
    #kv-area{
        background-image: url(../img/kv-portrait.jpg);
        background-size: cover;
        background-position: center center;
    }
}
#symbol-logo-dummy{
    display: block;
    width: 186px;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 34px;
    background-color: rgba(255,0,0,0.3);
    opacity: 0.5;
    z-index: 99999;
    
}

/*PC版のみ適応*/
/*
.standBy #kv-area .symbol-logo,
.standBy #kv-area .btn-contact,
.standBy #header-area{
    visibility: hidden;
    animation-name: fvElements;
    animation-fill-mode: forwards;
    animation-duration: 10s;
    opacity: 0;
}
*/

@keyframes fvElements{
    0%{opacity: 0; visibility: hidden;}
    85%{opacity: 0; visibility: hidden;}
    100%{opacity: 1; visibility: visible;}
}



#kv-area .catchcopy{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
/*    width: 556px;*/
    height: auto;
    transform: translate(-50%,-50%);

}
/*
.standBy #kv-area .catchcopy{
    animation-name: catchCopy;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-delay: 7s;
    animation-timing-function: linear;
}
@keyframes catchCopy{
    0%{opacity: 0;}
    50%{opacity: 1;}
    100%{opacity: 1;}
}

#kv-area .catchcopy-blur{
    display: block;
    display: none;
    content: url(../img/kv-title-blur.png);
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);

    width: 560px;
    height: auto;
    z-index: 100;
    opacity: 1;
    
}
.standBy #kv-area .catchcopy-blur{
    animation-name: catchcopyBlur;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-delay: 6s;
    animation-timing-function: ease-in-out;
}
@keyframes catchcopyBlur{
    0%{opacity: 1;}
    50%{opacity: 1;}
    100%{opacity: 0;}

}
*/

.section-outer{
    width: 100%;
    overflow: hidden;
}









/*スクロール後のフェードイン*/
.standBy #section-CONCEPT .fadeinElement h2{
    opacity: 0;
    transform: translate3d(0px,30px,0px);
}
.standBy #section-CONCEPT .fadeinElement p,
.standBy #section-CONCEPT .fadeinElement iframe{
    opacity: 0;
/*    transform: translate3d(0px,10px,0px);*/
}

.standBy #section-CONCEPT .fadeinElement.afterScroll h2{
    opacity: 1;
    transition-duration: 1.5s;
    transform: translate3d(0px,0px,0px);
    transition-timing-function: ease-out;
}

.standBy #section-CONCEPT .fadeinElement.afterScroll p,
.standBy #section-CONCEPT .fadeinElement.afterScroll iframe{
    opacity: 1;
    transition-duration: 2s;
    transition-timing-function: linear;
}

.standBy #section-CONCEPT .fadeinElement.afterScroll h2{ transition-delay: 0s;}
.standBy #section-CONCEPT  .fadeinElement.afterScroll p:nth-child(1){ transition-delay: 0.4s; }
.standBy #section-CONCEPT  .fadeinElement.afterScroll p:nth-child(2){ transition-delay: 0.8s; }
.standBy #section-CONCEPT  .fadeinElement.afterScroll p:nth-child(3){ transition-delay: 1.2s; }
.standBy #section-CONCEPT  .fadeinElement.afterScroll p:nth-child(4){ transition-delay: 1.6s; }
.standBy #section-CONCEPT  .fadeinElement.afterScroll p:nth-child(5){ transition-delay: 2.6s; }
.standBy #section-CONCEPT  .fadeinElement.afterScroll iframe{ transition-delay: 3.6s; }




/*TECHNOLOGY*/
.standBy #thisAreaFastFades.fadeinElement > h2,
.standBy #thisAreaFastFades.fadeinElement > h3,
.standBy #thisAreaFastFades.fadeinElement > p{
    opacity: 0;
    transform: translate3d(0px,30px,0px);
}
.standBy #thisAreaFastFades.fadeinElement.afterScroll > h2,
.standBy #thisAreaFastFades.fadeinElement.afterScroll > h3,
.standBy #thisAreaFastFades.fadeinElement.afterScroll > p{
    opacity: 1;
    transition-duration: 1.5s;
    transform: translate3d(0px,0px,0px);
    transition-timing-function: ease-out;
}
.standBy #thisAreaFastFades.fadeinElement.afterScroll h2{ transition-delay: 0s;}
.standBy #thisAreaFastFades.fadeinElement.afterScroll h3{ transition-delay: 0.6s;}
.standBy #thisAreaFastFades.fadeinElement.afterScroll p{ transition-delay: 1.2s;}




/*TECHNOLOGY　図版 6フィルター*/
.standBy .zuhan-six-filters.fadeinElement .bg-arrows,
.standBy .zuhan-six-filters.fadeinElement > img,
.standBy .zuhan-six-filters.fadeinElement li{
    opacity: 0;
}

.standBy .zuhan-six-filters.fadeinElement .air{
    transform: translate3d(0px,-40px,0px) scale(1.2);
}
.standBy .zuhan-six-filters.fadeinElement .aqua{
    transform: translate3d(0px,-100px,0px);
    transform-origin: center bottom;
}
.standBy .zuhan-six-filters.fadeinElement .water{
    transform: translate3d(0px,-100px,0px) scale(0.8);
    transform-origin: center bottom;
}




.standBy #section-TECHNOLOGY .fadeinElement.afterScroll .air{
    opacity: 1;
    transition-delay: 0.0s;
    transition-duration: 2s;
    transform:  translate3d(0px,0px,0px) scale(1);
    transition-timing-function: ease-out;
}

.standBy #section-TECHNOLOGY .fadeinElement.afterScroll .bg-arrows{ 
    opacity: 1;
    transition-delay: 1s;
    transition-duration: 3s;
}

.standBy #section-TECHNOLOGY .fadeinElement.afterScroll .aqua{
    opacity: 1;
    transition-delay: 1.7s;
    transition-duration: 3s;
    transform:  translate3d(0px,0px,0px);
}



.standBy .zuhan-six-filters.fadeinElement.afterScroll li{
    opacity: 1;
    transition-duration: 0.8s;
    transition-timing-function: linear;
    transform: translate3d(0px,0px,0px);
}
.standBy #section-TECHNOLOGY .fadeinElement.afterScroll li:nth-child(1){ transition-delay: 2s;}
.standBy #section-TECHNOLOGY .fadeinElement.afterScroll li:nth-child(2){ transition-delay: 2.1s;}
.standBy #section-TECHNOLOGY .fadeinElement.afterScroll li:nth-child(3){ transition-delay: 2.2s;}
.standBy #section-TECHNOLOGY .fadeinElement.afterScroll li:nth-child(4){ transition-delay: 2.3s;}
.standBy #section-TECHNOLOGY .fadeinElement.afterScroll li:nth-child(5){ transition-delay: 2.4s;}
.standBy #section-TECHNOLOGY .fadeinElement.afterScroll li:nth-child(6){ transition-delay: 2.5s;}


.standBy #section-TECHNOLOGY .fadeinElement.afterScroll .water{ 
    opacity: 1;
    transition-delay: 3.2s;
    transition-duration: 2s;
    transform:  translate3d(0px,0px,0px) scale(1);
}



/*TECHNOLOGY　解説 6フィルター　キャプション*/
.standBy #caption-six-filters.fadeinElement li{
    opacity: 0;
}
.standBy #caption-six-filters.fadeinElement.afterScroll li{opacity: 1; transition-duration: 1s;}

.standBy #caption-six-filters.fadeinElement.afterScroll li:nth-child(1){ transition-delay: 0s;}
.standBy #caption-six-filters.fadeinElement.afterScroll li:nth-child(2){ transition-delay: 0.4s;}
.standBy #caption-six-filters.fadeinElement.afterScroll li:nth-child(3){ transition-delay: 0.8s;}
.standBy #caption-six-filters.fadeinElement.afterScroll li:nth-child(4){ transition-delay: 1.2s;}
.standBy #caption-six-filters.fadeinElement.afterScroll li:nth-child(5){ transition-delay: 1.6s;}
.standBy #caption-six-filters.fadeinElement.afterScroll li:nth-child(6){ transition-delay: 2s;}




/*TECHNOLOGY　その他の機能*/
.standBy .etc-outer.fadeinElement{
    opacity: 0;
}
.standBy .etc-outer.fadeinElement.afterScroll{
    opacity: 1;
    transition-duration: 1s;
}


/*3つの機能と3つの優しさ*/
.standBy #theree-kindness-area .fadeinElement h3,
.standBy #theree-kindness-area .fadeinElement li{
    opacity: 0;
}

.standBy #theree-kindness-area .fadeinElement.afterScroll h3{
    transition-duration: 2s;
    opacity: 1;
}
.standBy #theree-kindness-area .fadeinElement.afterScroll li.function-B {transition-duration: 2s; transition-delay: 1s; opacity: 1;}
.standBy #theree-kindness-area .fadeinElement.afterScroll li.function-C {transition-duration: 2s; transition-delay: 2s; opacity: 1;}



/*フォトエッセイ*/
.standBy #photo-essay-area.fadeinElement h3,
.standBy #photo-essay-area.fadeinElement li{
    opacity: 0;
}
.standBy #photo-essay-area.fadeinElement.afterScroll h3,
.standBy #photo-essay-area.fadeinElement.afterScroll li{
    opacity: 1;
    transition-duration: 2s;
}
.standBy #photo-essay-area.fadeinElement.afterScroll li:nth-child(1){transition-delay: 0.6s;}
.standBy #photo-essay-area.fadeinElement.afterScroll li:nth-child(2){transition-delay: 0.8s;}
.standBy #photo-essay-area.fadeinElement.afterScroll li:nth-child(3){transition-delay: 1.0s;}
.standBy #photo-essay-area.fadeinElement.afterScroll li:nth-child(4){transition-delay: 1.2s;}



/*製品情報*/
.standBy #spec-first-area.fadeinElement{
    opacity: 0;
}
.standBy #spec-first-area.fadeinElement.afterScroll{
    opacity: 1;
    transition-duration: 2s;
}

/*表*/
.standBy #water-per-day-outer.fadeinElement{
    opacity: 0;
}
.standBy #water-per-day-outer.fadeinElement.afterScroll{
    opacity: 1;
    transition-duration: 2s;
}



/*FAQ*/
.standBy #section-FAQ.fadeinElement{
    opacity: 0;
}
.standBy #section-FAQ.fadeinElement.afterScroll{
    opacity: 1;
    transition-duration: 2s;
}



/*お問い合わせ*/
.standBy #section-CONTACT.fadeinElement{
    opacity: 0;
    transform: translate3d(0px,20px,0px);

}
.standBy #section-CONTACT.fadeinElement.afterScroll{
    opacity: 1;
    transition-duration: 1s;
    transform: translate3d(0px,0px,0px);
}

/*トップメッセージ*/
.topInfoBox{
	border: solid 3px #000000;
	padding: 20px 40px;
	margin-top: 40px;
	
}

.topInfoTitle1{
	font-size: 24px;
	margin-bottom: 20px;
  text-align: center;
  font-weight: bold; 
}
.topInfoText1{
	font-size: 16px;
	margin-bottom: 16px;
}
.topInfoText2{
	font-size: 16px;
	margin-bottom: 16px;
  text-align:right;
}
.topInfoDate{
	font-size: 12px;
	margin-bottom: 0px;
  text-align:right;
}
