@charset "UTF-8";

/*++++++++++++++++++++++++++
	背景
++++++++++++++++++++++++++*/

.wrapper {
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3";
    max-width: 1200px;
    width: 90%;
    margin: auto;
}
.min-wrap1000{
    max-width: 1000px;
    margin: auto;
}
.min-wrap850{
    max-width:850px;
    margin: auto;
}
body{
    background-color: #EEF7FF;
    color: #444444;
    overflow-x: hidden;
}
body img{
    vertical-align: bottom;
}
body a:hover{
    opacity: 1;
}
body a:hover img{
    opacity: 1;
}
/*++++++++++++++++++++++++++
	ボタン
++++++++++++++++++++++++++*/

a{text-decoration:none; color:#fff;}
a:link{text-decoration:none; color:#fff;}
a:visited{text-decoration:none; color:#fff;}
a:hover{text-decoration:none; color:#fff;}
a:active {text-decoration:none; color:#fff;}
/*++++++++++++++++++++++++++
	ふわっと表示
++++++++++++++++++++++++++*/
/*---ロードで---*/
.load-fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(0px);
    transition: all 0.7s;
}
.load-fade.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
.load-up1 {
    opacity:0;
}
.load-up1.is-show {
    animation-name:fadeInAnime1;
    animation-duration:0.8s;
    animation-delay: 0.5s;
    animation-fill-mode:forwards;
    opacity:0;
    transform: translateY(10px);
}
@keyframes fadeInAnime1{
    from {
      opacity: 0;
      transform: translateY(10px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0px);
    }
}
.load-up2 {
    opacity:0;
}
.load-up2.is-show {
    animation-name:fadeInAnime2;
    animation-duration:0.8s;
    animation-delay: 0.7s;
    animation-fill-mode:forwards;
    opacity:0;
    transform: translateY(10px);
}
@keyframes fadeInAnime2{
    from {
      opacity: 0;
      transform: translateY(10px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0px);
    }
}
.load-up3 {
    opacity:0;
}
.load-up3.is-show {
    animation-name:fadeInAnime3;
    animation-duration:0.8s;
    animation-delay: 0.9s;
    animation-fill-mode:forwards;
    opacity:0;
    transform: translateY(10px);
}
@keyframes fadeInAnime3{
    from {
      opacity: 0;
      transform: translateY(10px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0px);
    }
}


/*---スクロールで---*/
.scroll-up {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 1s;
}
.scroll-up.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
/*++++++++++++++++++++++++++
	共通コンテンツ
++++++++++++++++++++++++++*/
.sp{
    display: none;
}
.pc{
    display:block;
}
.wave figure{
    width: 100%;
}
.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 50px;
}
.youtube iframe {
    width: 100%;
    height: 100%;
}
@media only screen and (max-width: 780px) {
.sp{
     display: block;
}
.pc{
     display: none;
}
}
/*++++++++++++++++++++++++++
メインビジュアル
++++++++++++++++++++++++++*/
#main{
    background: url(../images/main-bg.jpg) no-repeat bottom center;
    background-size: cover;
}
@media only screen and (max-width: 780px) {

}
/*++++++++++++++++++++++++++
世界最高水準のフィルター性能
++++++++++++++++++++++++++*/
#performance{
    padding: 150px 0 100px;
}
#performance .perf-title{
    font-size: 30px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 5px;
}
#performance .perf-title span{
    color: #008AD2;
}
#performance .perf-title strong{
    font-size: 1.7em;
}
#performance h2{
    font-size: 50px;
    line-height: 1.5em;
    font-weight: 700;
    text-align: center;
    color: #204483;
}
#performance .explanation{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
}
#performance .explanation .left{
    width: 45%;
}
#performance .explanation .right{
    width: 50%;
}
#performance .explanation .txt-box:nth-child(1),
#performance .explanation .txt-box:nth-child(2),
#performance .explanation .txt-box:nth-child(3){
    margin-bottom: 30px;
}
#performance .explanation .txt-box h6{
    font-size: 20px;
    line-height: 1.5em;
    font-weight: 600;
    color: #204483;
    margin-bottom: 5px;
    margin-left: 1.3em;
    text-indent: -1.3em;
}
#performance .explanation .txt-box h6::before{
    content: '';
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    margin-top: -0.2em;
    margin-right: 0.3em;
}
#performance .explanation .txt-box h6.number1::before{
    background-image: url(../images/number1.svg);
}
#performance .explanation .txt-box h6.number2::before{
    background-image: url(../images/number2.svg);
}
#performance .explanation .txt-box h6.number3::before{
    background-image: url(../images/number3.svg);
}
#performance .explanation .txt-box h6.number4::before{
    background-image: url(../images/number4.svg);
}
#performance .explanation .txt-box p{
    font-size: 16px;
    line-height: 1.7em;
}
#performance .explanation .txt-box p span{
    font-weight: 600;
    color: #008AD2;
}
@media only screen and (max-width: 780px) {
    #performance{
        padding: 100px 0 80px;
    }
    #performance .perf-title{
        font-size: 26px;
    }
    #performance .perf-title span{
        display: block;
        line-height: 2em;
    }
    #performance h2{
        font-size: 40px;
    }
    #performance .explanation{
        margin-top: 40px;
    }
    #performance .explanation .left{
        width: 100%;
        margin-bottom: 20px;
    }
    #performance .explanation .right{
        width: 100%;
    }
    #performance .explanation .txt-box h6{
        font-size: 18px;
    }
    #performance .explanation .txt-box p{
        font-size: 15px;
    }
}
/*++++++++++++++++++++++++++
イメージ動画
++++++++++++++++++++++++++*/
#structure .movie{
    padding-bottom: 40px;
    max-width: 800px;
    width: 100%;
    margin: auto;
}
#structure .movie .movie-title{
    font-size: 28px;
    line-height: 1.6em;
    font-weight: 700;
    text-align: center;
    color: #204483;
    position: relative;
}
#structure .movie .movie-title span{
    color: #008AD2;
    display: block;
}
#structure .movie .movie-title.ud-line::before{
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
    margin: auto;
    content: '';
    display: inline-block;
    background-image: url(../images/line.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 10px;
}
@media only screen and (max-width: 780px) {
    #structure .movie .movie-title{
        font-size: 24px;
    }
}
/*++++++++++++++++++++++++++
フィルター性能を100%発揮！
++++++++++++++++++++++++++*/
#structure .patent{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
#structure .patent .left{
    width: 62%;
}
#structure .patent .right{
    width: 35%;
}
#structure .patent .txt-box h2{
    font-size: 40px;
    line-height: 1.5em;
    font-weight: 700;
    color: #008AD2;
    margin-bottom: 10px;
}
#structure .patent .txt-box h3{
    font-size: 22px;
    line-height: 1.5em;
    font-weight: 500;
    color: #204483;
    margin-bottom: 10px;
}
#structure .patent .txt-box p{
    font-size: 16px;
    line-height: 1.7em;
}
@media only screen and (max-width: 780px) {
    #structure .patent{
        flex-direction: column-reverse;
    }
    #structure .patent .left{
        width: 100%;
    }
    #structure .patent .right{
        width: 80%;
        margin: auto;
    }
    #structure .patent .txt-box h2{
        font-size: 28px;
    }
    #structure .patent .txt-box h3{
        font-size: 18px;
    }
    #structure .patent .txt-box p{
        font-size: 15px;
    }
}
/*++++++++++++++++++++++++++
一般的な空気清浄機 Cleanroom250
++++++++++++++++++++++++++*/
#structure .comparison{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 0 80px;
}
#structure .comparison .left{
    width: 36%;
    background-color: #fff;
}
#structure .comparison .right{
    width: 63%;
    background-color: #fff;
}
#structure .comparison .name{
    font-size: 18px;
    line-height: 1.7em;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    color: #444444;
    background-color: #D9E4E8;
}
#structure .comparison .right .name{
    background-color: #008AD2;
    color: #fff;
}
#structure .comparison .img-inr{
    padding: 20px;
}
@media only screen and (max-width: 780px) {
    #structure .comparison .left{
        width: 100%;
        margin-bottom: 20px;
    }
    #structure .comparison .right{
        width: 100%;
    }
    #structure .comparison .name{
        font-size: 17px;
        padding: 8px;
    }
}
/*++++++++++++++++++++++++++
圧倒的な風量
++++++++++++++++++++++++++*/
#airvolume{
    background-color: #204483;
    padding: 50px 0;
}
#airvolume .main-txt{
    font-size: 40px;
    line-height: 1.5em;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}
#airvolume p{
    font-size: 16px;
    line-height: 1.8em;
    font-weight: 400;
    text-align: center;
    color: #fff;
}
@media only screen and (max-width: 780px) {
    #airvolume .main-txt{
        font-size: 30px;
    }
    #airvolume p{
        font-size: 15px;
    }
}
/*++++++++++++++++++++++++++
清浄空気供給量
++++++++++++++++++++++++++*/
#data{
    padding: 80px 0;
}
#data .bargraph{
    margin-bottom: 80px;
}
#data .bargraph .inr{
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 30px 60px;
}
#data .bargraph .main-txt{
    font-size: 28px;
    line-height: 1.5em;
    font-weight: 600;
    text-align: center;
    color: #204483;
    margin-bottom: 30px;
}
@media only screen and (max-width: 780px) {
    #data{
        padding: 70px 0;
    }
    #data .bargraph{
        margin-bottom: 50px;
    }
    #data .bargraph .inr{
        padding: 25px 15px;
    }
    #data .bargraph .main-txt{
        font-size: 20px;
        margin-bottom: 20px;
    }
}
/*++++++++++++++++++++++++++
空気の循環回数
++++++++++++++++++++++++++*/
#data .table{
    margin-bottom: 60px;
}
#data .table .main-txt{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}
#data .table .sub-txt{
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
}
@media only screen and (max-width: 780px) {
    #data .table{
        margin-bottom: 50px;
    }
    #data .table .main-txt{
        font-size: 16px;
    }
    #data .table .sub-txt{
        font-size: 13px;
    }
}
/*++++++++++++++++++++++++++
核タンパク質濃度
++++++++++++++++++++++++++*/
#data .linegraph .inr{
    background-color: #fff;
    padding: 30px 50px;
}
#data .linegraph .main-txt{
    font-size: 17px;
    line-height: 1.6em;
    font-weight: 500;
    text-align: center;
    color: #204483;
    margin-bottom: 30px;
}
#data .linegraph .sub-txt{
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
}
@media only screen and (max-width: 780px) {
    #data .linegraph .inr{
        padding: 25px 18px;
    }
    #data .linegraph .main-txt{
        font-size: 15px;
        margin-bottom: 25px;
    }
    #data .linegraph .sub-txt{
        font-size: 13px;
    }
}
/*++++++++++++++++++++++++++
操作部紹介.かんたん設置
++++++++++++++++++++++++++*/
#introduction{
    padding: 0 0 100px;
}
#introduction .flex-blk{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#introduction .flex-blk .left,
#introduction .flex-blk .right{
    width: 48%;
}
#introduction .en-txt{
    font-size: 11px;
    line-height: 1.4em;
    font-weight: 700;
    color: #204483;
    margin-bottom: 2px;
}
#introduction .main-txt{
    font-size: 32px;
    line-height: 1.5em;
    font-weight: 700;
    color: #008AD2;
    margin-bottom: 20px;
}
#introduction p{
    font-size: 16px;
    line-height: 1.7em;
    margin-bottom: 30px;
}
@media only screen and (max-width: 780px) {
    #introduction{
        padding: 0 0 60px;
    }
    #introduction .flex-blk .left,
    #introduction .flex-blk .right{
        width: 100%;
    }
    #introduction .flex-blk .left{
        margin-bottom: 60px;
    }
}
/*++++++++++++++++++++++++++
陰圧・陽圧にも対応
++++++++++++++++++++++++++*/
#option{
    background-color: #E4F2FD;
    padding: 100px 0;
}
#option .en-txt{
    font-size: 15px;
    line-height: 1.4em;
    font-weight: 700;
    color: #204483;
    margin-bottom: 2px;
    text-align: center;
}
#option .main-txt{
    font-size: 40px;
    line-height: 1.5em;
    font-weight: 700;
    color: #008AD2;
    margin-bottom: 25px;
    text-align: center;
}
#option p{
    font-size: 16px;
    line-height: 1.7em;
    margin-bottom: 60px;
    text-align: center;
}
#option .flex-blk{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#option .flex-blk .left,
#option .flex-blk .right{
    width: 48%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
}
#option .flex-blk .inr{
    padding: 10px 20px 20px;
}
#option .flex-blk .inbl{
    display: inline-block;
}
#option .flex-blk .name{
    font-size: 26px;
    line-height: 1.5em;
    font-weight: 700;
    color: #204483;
}
#option .flex-blk .system{
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 700;
    color: #008AD2;
    margin-left: 10px;
}
#option .flex-blk .size1{
    width: 76%;
    margin-left: auto;
    margin-right: auto;
}
#option .flex-blk .size2{
    width: 100%;
}
#option .flex-blk figure{
    margin-top: 30px;
    margin-bottom: 20px;
}
#option .flex-blk .spec .txt1{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
    color: #204483;
    margin-bottom: 10px;
}
#option .flex-blk .spec .txt1::before{
    content: '■';
    font-size: 0.6em;
    color: #008AD2;
    margin-right: 0.3em;
}
#option .flex-blk .spec ul li{
    border-top: solid 1px #DFDFDF;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#option .flex-blk .spec ul li:last-child{
    border-bottom: solid 1px #DFDFDF;
}
#option .flex-blk .spec .lavel{
    width: 7em;
    font-size: 15px;
    font-weight: 600;
}
#option .flex-blk .spec .value{
    width: calc(100% - 7.5em);
    font-size: 15px;
    font-weight: 400;
}
@media only screen and (max-width: 780px) {
    #option{
        padding: 60px 0;
    }
    #option .en-txt{
        font-size: 14px;
    }
    #option .main-txt{
        font-size: 32px;
    }
    #option p{
        font-size: 15px;
        margin-bottom: 50px;
    }
    #option .flex-blk .left,
    #option .flex-blk .right{
        width: 100%;
    }
    #option .flex-blk .left{
        margin-bottom: 40px;
    }
    #option .flex-blk .name{
        font-size: 22px;
    }
    #option .flex-blk .system{
        font-size: 14px;
        margin-left: 5px;
    }
    #option .flex-blk figure{
        margin-top: 20px;
    }
    #option .flex-blk .spec .lavel{
        font-size: 14px;
    }
    #option .flex-blk .spec .value{
        font-size: 14px;
    }
}
/*++++++++++++++++++++++++++
多彩な利用シーン
++++++++++++++++++++++++++*/
#scene{
    padding: 80px 0;
    background: url(../images/scene-bg.jpg) no-repeat center;
    background-size: cover;
}
#scene h3{
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5em;
    color: #fff;
    text-align: center;
}
#scene .ud-line{
    position: relative;
}
#scene .ud-line::before{
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
    margin: auto;
    content: '';
    display: inline-block;
    background-image: url(../images/line-w.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 10px;
}
#scene .sub-txt{
    font-size: 18px;
    line-height: 1.7em;
    margin-top: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
}
#scene .container{
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
}
#scene .container .inr{
    padding: 60px 30px;
}
#scene .container .flx-box1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
#scene .container .flx-box1 .left{
    width: 40%;
}
#scene .container .flx-box1 .right{
    width: 58%;
}
#scene .container .flx-box1 h4{
    font-size: 28px;
    line-height: 1.5em;
    font-weight: 700;
    text-align: center;
    color: #204483;
    margin-bottom: 30px;
}
#scene .container .flx-box1 p{
    font-size: 16px;
    line-height: 1.7em;
}
#scene .container .flx-box1 figure{
    max-width: 250px;
    width: 80%;
    margin: auto;
}
#scene .container .flx-box2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#scene .container .flx-box2 .left,
#scene .container .flx-box2 .right{
    width: 48%;
}
#scene .container .flx-box2 .caption{
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    margin-top: 10px;
}
@media only screen and (max-width: 780px) {
    #scene h3{
        font-size: 24px;
    }
    #scene .sub-txt{
        font-size: 16px;
        margin-bottom: 40px;
    }
    #scene .container .inr{
        padding: 40px 15px;
    }
    #scene .container .flx-box1 .left,
    #scene .container .flx-box1 .right{
        width: 100%;
    }
    #scene .container .flx-box1 .left{
        margin-bottom: 25px;
    }
    #scene .container .flx-box1 h4{
        font-size: 24px;
        margin-bottom: 25px;
    }
    #scene .container .flx-box1 p{
        font-size: 15px;
    }
    #scene .container .flx-box1 figure{
        max-width: 200px;
    }
    #scene .container .flx-box2 .left,
    #scene .container .flx-box2 .right{
        width: 100%;
    }
    #scene .container .flx-box2 .caption{
        font-size: 14px;
        margin-top: 5px;
    }
}
/*++++++++++++++++++++++++++
基本仕様
++++++++++++++++++++++++++*/
#specification{
    padding: 80px 0;
}
#specification .flx-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
#specification .flx-box .left{
    width: 38%;
}
#specification .flx-box .right{
    width: 60%;
}
#specification ul li{
    border-bottom: solid 1px #fff;
    box-sizing: border-box;
}
#specification ul li:last-child{
    border-bottom: none;
}
#specification ul li.title{
    background-color: #008AD2;
}
#specification ul li.title .txt1{
    font-size: 18px;
    line-height: 1.5em;
    font-weight: 700;
    text-align: center;
    color: #fff;
    padding: 10px;
}
#specification ul li.list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#specification ul li.list .lavel{
    width: 35%;
    background-color: #C3E4F7;
    border-right: solid 1px #fff;
    box-sizing: border-box;
}
#specification ul li.list .value{
    width: 65%;
    background-color: #E4F2FD;
}
#specification ul li.list .txt2{
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7em;
}
#specification ul li.list .lavel .txt2{
    text-align: center;
}
#specification ul li.list .txt3{
    font-weight: 700;
    margin-bottom: 5px;
}
#specification ul li.list .txt4{
    margin-bottom: 10px;
    position: relative;
    margin-left: 0.7em;
}
#specification ul li.list .txt4::before{
    content: '';
    position: absolute;
    top: 0.65em;
    left: -0.7em;
    width: 0.5em;
    height: 0.5em;
    background-color: #008AD2;
}
#specification ul li.list .txt4 span::before{
    content: '/';
    margin-right: 5px;
    margin-left: 5px;
}
#specification ul li.list .txt5{
    font-size: 14px;
}
@media only screen and (max-width: 780px) {
    #specification{
        padding: 60px 0;
    }
    #specification .flx-box .left{
        width: 80%;
        margin: auto auto 10px;
    }
    #specification .flx-box .right{
        width: 100%;
    }
    #specification ul li.title .txt1{
        font-size: 16px;
    }
    #specification ul li.list .txt2{
        padding: 10px 15px;
        font-size: 15px;
    }
    #specification ul li.list .txt4 span::before{
        content: '';
        margin-right: auto;
        margin-left: auto;
        display: block;
    }
}
/*++++++++++++++++++++++++++
お問合せ
++++++++++++++++++++++++++*/
.mail-contents{
    max-width: 650px;
    width: 100%;
    margin: auto;
    padding-bottom: 80px;
    text-align: center;
}
.mail-contents .guarantee{
    text-align: center;
    margin-bottom: 20px;
}
.mail-contents .guarantee .txt{
    font-size: 30px;
    line-height: 1.5em;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.mail-contents .guarantee .txt::before,
.mail-contents .guarantee .txt::after{
    content: '';
    background-color: #444444;
    border-radius: 5px;
    flex-grow: 1;
    height: 1px;
}
.mail-contents .guarantee .txt::before{
    margin-right: 15px;
}
.mail-contents .guarantee .txt::after{
    margin-left: 15px;
}
.mail-contents .button{
    background-image: linear-gradient(0deg, rgba(13, 124, 113, 1), rgba(63, 194, 190, 1));
    border-radius: 10px;
    padding: 25px 0;
}
.mail-contents .button .btn-txt{
    font-size: 38px;
    line-height: 1.4em;
    font-weight: 800;
    color: #fff;
    text-align: center;
}
.mail-contents .button .arrow{
	position: relative;
	display: inline-block;
	vertical-align: middle;
}
.mail-contents .button .arrow::before,
.mail-contents .button .arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: -55px;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.mail-contents .button .type::before{
	width: 42px;
	height: 42px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #fff;
}
.mail-contents .button .type::after{
	right: -38px;
	width: 12px;
	height: 12px;
	border-top: 2px solid #0D7C71;
	border-right: 2px solid #0D7C71;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media only screen and (max-width: 780px) {
    .mail-contents{
        padding-bottom: 60px;
    }
    .mail-contents .guarantee .txt{
        font-size: 24px;
    }
    .mail-contents .button .btn-txt{
        font-size: 24px;
    }
    .mail-contents .button .arrow::before,
    .mail-contents .button .arrow::after{
        right: -40px;
    }
    .mail-contents .button .type::before{
        width: 30px;
        height: 30px;
    }
    .mail-contents .button .type::after{
        right: -28px;
        width: 6px;
        height: 6px;
    }
}
@media only screen and (max-width: 400px) {
    .mail-contents .guarantee .txt{
        font-size: 22px;
    }
    .mail-contents .button .btn-txt{
        font-size: 21px;
    }
    .mail-contents .button .arrow::before,
    .mail-contents .button .arrow::after{
        right: -28px;
    }
    .mail-contents .button .type::before{
        width: 24px;
        height: 24px;
    }
    .mail-contents .button .type::after{
        right: -18px;
        width: 4px;
        height: 4px;
    }
}
/*++++++++++++++++++++++++++
フッター
++++++++++++++++++++++++++*/
footer{
    background-color: #fff;
    padding: 30px 0;
    position: relative;
}
footer .txt1{
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 500;
    text-align: center;
    color: #5B5B5B;
    margin-bottom: 10px;
}
footer .txt2{
    font-size: 15px;
    line-height: 1.6em;
    text-align: center;
}
footer figure{
    max-width: 350px;
    width: 100%;
    margin: auto auto 10px;
}

footer .pagetop{
    position: absolute;
    bottom: 20px;
    right: 30px;
}
@media only screen and (min-width: 1200px) {
    footer .pagetop{
        right: calc(50% - 560px);
    }
}
footer .pagetop .btn-txt{
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    color: #444444;
}
footer .pagetop .arrow1{
	position: relative;
	display: inline-block;
	vertical-align: middle;
}
footer .pagetop .arrow1::before,
footer .pagetop .arrow1::after{
	position: absolute;
	top: -60px;
	right: 0;
    left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
footer .pagetop .type1::before{
	width: 54px;
	height: 54px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #008AD2;
}
footer .pagetop .type1::after{
	right: -2px;
    top: -38px;
    margin: auto;
	width: 16px;
	height: 16px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media only screen and (max-width: 780px) {
    footer .txt1{
        font-size: 15px;
    }
    footer .txt2{
        font-size: 14px;
    }
    footer figure{
        max-width: 320px;
    }
    footer .pagetop{
        right: 15px;
    }
    footer .pagetop .btn-txt{
        font-size: 10px;
    }
    footer .pagetop .arrow1::before,
    footer .pagetop .arrow1::after{
        top: -52px;
    }
    footer .pagetop .type1::before{
        width: 46px;
        height: 46px;
    }
    footer .pagetop .type1::after{
        right: 0;
        top: -33px;
        width: 12px;
        height: 12px;
    }
}