@charset "UTF-8";
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	リセット
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    vertical-align:baseline;
    background:transparent;
    font-size: 100%;
    font-weight: normal;
}
html{
    font-size:62.5%;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ZenKakuGothicNew", "Helvetica Neue", Meiryo, sans-serif;
}
body {
    color: #222;
    font-size: 1.4rem;
    line-height: 2;
}
div{
    display: block;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
nav,ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    color: #222;
    text-decoration: none;
}
img{
    width: 100%;
}
*{
    box-sizing: border-box;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	common
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.wrap{
    overflow: hidden;
}
br.pc,div.pc,img.pc{
    display: block;
}
br.tab,div.tab,img.tab{
    display: none;
}
br.sp,div.sp,img.sp{
    display: none;
}
@media only screen and (max-width: 1024px) {
    .wrap{
        font-size: 14.4px;
    }
    br.pc,div.pc,img.pc{
        display: none;
    }
    br.tab,div.tab,img.tab{
        display: block;
    }
    br.sp,div.sp,img.sp{
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    .wrap {
        font-size: 12.8px;
    }
    br.pc,div.pc,img.pc{
        display: none;
    }
    br.tab,div.tab,img.tab{
        display: none;
    }
    br.sp,div.sp,img.sp{
        display: block;
    }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	top
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.top{
    width: 100%;
    height: 780px;
    position: relative;
    overflow: hidden;
}
.top__text{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.top__text h1{
    margin-bottom: 24px;
}
.top__text h1 img{
    width: 494px;
}
.top__text p{
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.top__scrooll{
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
}
.top__scrooll p{
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Futura', sans-serif;
    line-height: 1;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.top__scrooll img{
    width: 40px;
}
@media only screen and (max-width: 1024px) {
    .top{
        width: 100%;
        height: 100vh;
    }
    .top__text h1{
        margin-bottom: 16px;
    }
    .top__text h1 img{
        width: 444.6px;
    }
    .top__text p{
        font-size: 16px;
    }
    .top__scrooll{
        bottom: 64px;
    }
}
@media only screen and (max-width: 768px) {
    .top{
        width: 100%;
        height: 100vh;
    }
    .top__text h1{
        margin-bottom: 4px;
    }
    .top__text h1 img{
        width: 168px;
    }
    .top__text p{
        font-size: 14px;
    }
    .top__scrooll{
        bottom: 40px;
    }
}

/*top__bg
———————————————————————————————————————————————————————————————————*/
.top__bg{
    width: 100%;
    height: 780px;
    position: relative;
    overflow: hidden;
}
.top__bg--item{
    z-index: 0;
    width: 100%;
    height: 780px;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: fade__animation 36s 0s infinite;
    animation: fade__animation 36s 0s infinite;
}
.top__bg--item:nth-of-type(1) {
    background: url(../images/top__bg--pc--1.png) 50% 50% no-repeat;
    background-size: cover;
}
.top__bg--item:nth-of-type(2) {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
    background: url(../images/top__bg--pc--2.png) 50% 50% no-repeat;
    background-size: cover;
}
.top__bg--item:nth-of-type(3) {
    -webkit-animation-delay: 12s;
    animation-delay: 12s;
    background: url(../images/top__bg--pc--3.png) 50% 50% no-repeat;
    background-size: cover;
}
.top__bg--item:nth-of-type(4) {
    -webkit-animation-delay: 18s;
    animation-delay: 18s;
    background: url(../images/top__bg--pc--4.png) 50% 50% no-repeat;
    background-size: cover;
}
.top__bg--item:nth-of-type(5) {
    -webkit-animation-delay: 24s;
    animation-delay: 24s;
    background: url(../images/top__bg--pc--5.png) 50% 50% no-repeat;
    background-size: cover;
}
.top__bg--item:nth-of-type(6) {
    -webkit-animation-delay: 30s;
    animation-delay: 30s;
    background: url(../images/top__bg--pc--6.png) 50% 50% no-repeat;
    background-size: cover;
}
@keyframes fade__animation{
    0% {
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    17% {
        opacity: 1;
    }
    25% {
        opacity: 0;
        transform: scale(1.1) ;
    }
    100% { 
        opacity: 0 
    }
}
@media only screen and (max-width: 1024px) {
    .top__bg{
        height: 100vh;
    }
    .top__bg--item{
        height: 100vh;
    }
}
@media only screen and (max-width: 768px) {
    .top__bg{
        height: 100vh;
    }
    .top__bg--item{
        height: 100vh;
    }
    .top__bg--item:nth-of-type(1) {
        background: url(../images/top__bg--sp--1.png) 50% 50% no-repeat;
        background-size: cover;
    }
    .top__bg--item:nth-of-type(2) {
        -webkit-animation-delay: 6s;
        animation-delay: 6s;
        background: url(../images/top__bg--sp--2.png) 50% 50% no-repeat;
        background-size: cover;
    }
    .top__bg--item:nth-of-type(3) {
        -webkit-animation-delay: 12s;
        animation-delay: 12s;
        background: url(../images/top__bg--sp--3.png) 50% 50% no-repeat;
        background-size: cover;
    }
    .top__bg--item:nth-of-type(4) {
        -webkit-animation-delay: 18s;
        animation-delay: 18s;
        background: url(../images/top__bg--sp--4.png) 50% 50% no-repeat;
        background-size: cover;
    }
    .top__bg--item:nth-of-type(5) {
        -webkit-animation-delay: 24s;
        animation-delay: 24s;
        background: url(../images/top__bg--sp--5.png) 50% 50% no-repeat;
        background-size: cover;
    }
    .top__bg--item:nth-of-type(6) {
        -webkit-animation-delay: 30s;
        animation-delay: 30s;
        background: url(../images/top__bg--sp--6.png) 50% 50% no-repeat;
        background-size: cover;
    }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	header
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
header{
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 8;
}
.header__inner{
    width: 100%;
    margin: 0 auto;
    padding: 24px 0 0 24px;
}
.header__inner img{
    height: 27px;
    width: auto;
}
@media only screen and (max-width: 1024px) {
    header{
        display: none;
    }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	footer
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
footer{
    width: 100%;
}
.footer__inner{
    max-width: 976px;
    margin: 0 auto 80px;
    text-align: center;
}
.footer__inner img{
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}
.footer__inner p{
    color: #8A8A8A;
    font-size: 8px;
    font-weight: 500;
    font-family: 'Futura', sans-serif;
    line-height: 1;
    letter-spacing: 0.2em;
    margin-bottom: 36px;
}
@media only screen and (max-width: 1024px) {
    .footer__inner{
        max-width: 100%;
        padding: 0 40px;
    }
    .footer__inner img{
        height: 28.8px;
        margin-bottom: 20px;
    }
    .footer__inner p{
        margin-bottom: 46px;
    }  
}
@media only screen and (max-width: 768px) {
    .footer__inner{
        max-width: 100%;
        padding: 0 20px;
    }
    .footer__inner img{
        height: 24px;
        margin-bottom: 24px;
    }
    .footer__inner p{
        margin-bottom: 56px;
    }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	btn
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.btn__1{
    display: inline-block;
    transition: 0.3s ease-in;
    margin: 0 auto;
}
.btn__1:hover{
    opacity: 0.7;
    transition: 0.3s ease-in;
}
.btn__1--inner{
    display: flex;
    align-items: center;
}
.btn__1--inner--text{
    color: #333333;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Futura', sans-serif;
    line-height: 1;
    letter-spacing: 0.1em;
}
.btn__1--inner--image{
    padding-left: 16px;
    width: 60px;
}
.effect__fade > a.btn__2{
    display: flex;
    align-items: center;
    align-content: stretch;
    justify-content: center;
    width: 292px;
    padding: 24px 0;
    border: 1px solid #CDCDCD;
    border-radius: 60px;
    transition: 0.3s ease-in;
    margin: 0 auto;
}
.effect__fade > a.btn__2:hover{
    opacity: 0.7;
    transition: 0.3s ease-in;
}
.btn__2--image{
    width: 24px;
    margin-right: 32px;
}
.btn__2--text{
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.03em;
}
.btn__2--text.en{
    font-family: 'Futura', sans-serif;
}
@media only screen and (max-width: 768px) {
    .effect__fade > a.btn__2{
        max-width: 292px;
        width: 100%;
    }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	type1 format
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.type1{
    padding: 80px 0;
}
.type1.brown{
    background: #F8F5EF;
}
.type1__inner{
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    align-content: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}
.type1__inner--image{
    max-width: 632px;
    width: 49.375%;
}
.type1__inner--text{
    max-width: 532px;
    width: 41.5625%;
}
.type1__inner--text--title{
    margin-bottom: 80px;
}
.type1__inner--text--title h2{
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Futura', sans-serif;
    letter-spacing: 0.2em;
}
.type1__inner--text--title h2:after{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    content: "";
    width: 40px;
    height: 1.5px;
    background: #CDCDCD;
    margin-left: 20px;
}
.type1__inner--text h3{
    font-size: 32px;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}
.type1__inner--text h3 span{
    font-weight: 700;
    letter-spacing: 0.22em;
}
.type1__inner--text--description p{
    font-size: 14px;
    font-weight: 700;
    line-height: 1.42857;
    letter-spacing: 0.24em;
    margin-bottom: 20px;
}
.type1__inner--text--description p:last-of-type{
    margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
    .type1{
        padding: 40px 0 0;
    }
    .type1__inner{
        max-width: 100%;
        padding: 0;
        display: block;
    }
    .type1__inner--image{
        display: none;
    }
    .type1__inner--text{
        max-width: 100%;
        width: 100%;
    }
    .type1__inner--text--title{
        padding: 0 40px;
        margin-bottom: 32px;
    }
    .type1__inner--text--title h2:after{
        margin-left: 24px;
    }
    .type1__inner--text h3{
        font-size: 28px;
        padding: 0 40px;
        margin-bottom: 0;
    }
    .type1__inner--text--image{
        z-index: -1;
        position: relative;
        top: -64px;
    }
    .type1__inner--text--description{
        position: relative;
        top: -120px;
        padding: 0 40px;
    }
    .type1__inner--text--description p{
        line-height: 1.66667;
    }    
}
@media only screen and (max-width: 768px) {
    .type1{
        padding: 24px 0 0;
    }
    .type1__inner--text--title{
        padding: 0 16px;
        margin-bottom: 24px;
    }
    .type1__inner--text--title h2:after{
        margin-left: 8px;
    }
    .type1__inner--text h3{
        font-size: 22px;
        padding: 0 16px;
    }
    .type1__inner--text--image{
        z-index: -1;
        position: relative;
        top: -28px;
    }
    .type1__inner--text--description{
        position: relative;
        top: -80px;
        padding: 0 16px;
    }
    .type1__inner--text--description p{
        font-size: 12px;
        line-height: 1.66667;
    }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	type2 format
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.type2{
    padding: 80px 0;
}
.type2.brown{
    background: #F8F5EF;
}
.type2__inner{
    max-width: 976px;
    margin: 0 auto;
}
.type2__inner--title{
    margin-bottom: 48px;
}
.type2__inner--title h2{
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Futura', sans-serif;
    letter-spacing: 0.2em;
}
.type2__inner--title h2:after{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    content: "";
    width: 40px;
    height: 1.5px;
    background: #CDCDCD;
    margin-left: 20px;
}
.type2__inner--text{
    margin-bottom: 32px;
}
.type2__inner--text p{
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
}
.type2__inner--2row--item{
    display: flex;
    align-items: center;
    align-content: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 160px;
}
.type2__inner--2row--item:nth-of-type(even){
    flex-direction: row-reverse;   
}
.type2__inner--2row--item:last-of-type{
    margin-bottom: 0;
}
.type2__inner--3row{
    display: flex;
    align-items: normal;
    align-content: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}
.type2__inner--4row{
    display: flex;
    align-items: normal;
    align-content: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}
.type2__inner--4row--item{
    max-width: 240px;
    max-height: 240px;
    width: 23.300970873%;
    margin-bottom: 24px;
}
.type2__inner--4row--item:nth-of-type(n+5):nth-of-type(-n+8){
    margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
    .type2{
        padding: 70px 0;
    }
    .type2__inner{
        max-width: 100%;
        padding: 0 40px;
    }
    .type2__inner--title{
        margin-bottom: 36px;
    }
    .type2__inner--title h2:after{
        margin-left: 24px;
    }
    .type2__inner--2row--item{
        display: block;
        margin-bottom: 110px;
    }
    .type2__inner--3row{
        display: flex;
        align-items: normal;
        align-content: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .type2__inner--4row--item{
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 768px) {
    .type2{
        padding: 60px 0;
    }
    .type2__inner{
        max-width: 100%;
        padding: 0 20px;
    }
    .type2__inner--title{
        margin-bottom: 24px;
    }
    .type2__inner--title h2:after{
        margin-left: 8px;
    }
    .type2__inner--2row--item{
        display: block;
        margin-bottom: 60px;
    }
    .type2__inner--3row{
        display: block;
    }
    .type2__inner--4row--item{
        max-width: 100%;
        max-height: 100%;
        width: 48.104956268%;
        margin-bottom: 16px;
    }
    .type2__inner--4row--item:nth-of-type(n+5):nth-of-type(-n+8){
        margin-bottom: 16px;
    }
    .type2__inner--4row--item:nth-of-type(n+7):nth-of-type(-n+8){
        margin-bottom: 0;
    }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	type2__**
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*service
———————————————————————————————————————————————————————————————————*/
.type2__inner--2row--item--text.service__1{
    background: url(../images/service__1--bg.svg) 50% 50% no-repeat;
    background-size: contain;
}
.type2__inner--2row--item--text.service__2{
    background: url(../images/service__2--bg.svg) 50% 50% no-repeat;
    background-size: contain;
}
.type2__inner--2row--item--text.service__3{
    background: url(../images/service__3--bg.svg) 50% 50% no-repeat;
    background-size: contain;
}
.type2__inner--2row--item--image{
    max-width: 532px;
    width: 51.650485436%;
}
.type2__inner--2row--item--text{
    max-width: 458px;
    width: 44.466019417%;
    padding: 0 0 0 16px;
}
.type2__inner--2row--item--text h2{
    color: #D45B41;
    margin-bottom: 44px;
}
.type2__inner--2row--item--text h2 span{
    font-size: 32px;
    font-weight: 700;
    font-family: 'Futura', sans-serif;
    line-height: 1.5;
}
.type2__inner--2row--item--text h2 span:nth-of-type(2){
    padding-left: 8px;
    letter-spacing: 0.03em;
}
.type2__inner--2row--item--text h2 span.jp{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ZenKakuGothicNew", "Helvetica Neue", Meiryo, sans-serif;
}
.type2__inner--2row--item--text h2 span.notosans{
    font-family: Noto Sans,"Noto Sans Japanese",'Futura', sans-serif;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: #D45B41;
}
.type2__inner--2row--item--text h3{
    font-size: 18px;
    font-weight: 700;
    line-height: 2.22222;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.type2__inner--2row--item--text p{
    color: #3D3D3D;
    font-size: 14px;
    font-weight: 700;
    line-height: 2.28571;
    letter-spacing: 0.08em;
    margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
    .type2__inner--2row--item--text.service__1,.type2__inner--2row--item--text.service__2,.type2__inner--2row--item--text.service__3{
        background-position: top;
    }
    .type2__inner--2row--item--image{
        max-width: 100%;
        width: 100%;
        margin-bottom: 24px;
    }
    .type2__inner--2row--item--text{
        max-width: 100%;
        width: 100%;
        padding: 0;
        padding-top: 20px;
    }
    .type2__inner--2row--item--text h2{
        margin-bottom: 16px;
    }
    .type2__inner--2row--item--text h2 span{
        font-size: 28px;
    }
    .type2__inner--2row--item--text h3{
        font-size: 18px;
        margin-bottom: 16px;
    }
    .type2__inner--2row--item--text p{
        margin-bottom: 32px;
    }
}
@media only screen and (max-width: 768px) {
    .type2__inner--2row--item--text.service__1,.type2__inner--2row--item--text.service__2,.type2__inner--2row--item--text.service__3{
        background-position: top;
    }
    .type2__inner--2row--item--image{
        max-width: 100%;
        margin-bottom: 20px;
    }
    .type2__inner--2row--item--text{
        max-width: 100%;
        padding: 0;
        padding-top: 16px;
    }
    .type2__inner--2row--item--text h2{
        margin-bottom: 12px;
    }
    .type2__inner--2row--item--text h2 span{
        font-size: 24px;
    }
    .type2__inner--2row--item--text h3{
        font-size: 16px;
        margin-bottom: 12px;
    }
    .type2__inner--2row--item--text p{
        font-size: 12px;
        margin-bottom: 24px;
    }
}

/*movie
———————————————————————————————————————————————————————————————————*/
.effect__fade > a.modal__open--movie{
    transition: 0.3s ease-in;
}
.effect__fade > a.modal__open--movie:hover{
    opacity: 0.7;
    transition: 0.3s ease-in;
}
.modal{
    display: none;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    z-index: 16;
    overflow: auto;
}
.modal--bg{
    background: rgba(34,34,34,0.9);
    position: absolute;
    height: 100vh;
    width: 100vw;
    padding: 80px;
}
.movie .modal--content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 976px;
    width: 100%;
}
.movie .modal--content--movie{
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.movie .modal--content--movie iframe{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.type2__outer{
    width: 100%;
    text-align: center;
    position: relative;
}
.line .modal--content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 375px;
    width: 92%;
    padding: 64px 20px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 8px;
}
.line .modal--content p:nth-of-type(1){
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
    margin-bottom: 24px
}
.line .modal--content p:nth-of-type(2){
    background: #f9f9f9;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 40px
}
.line .modal--content .btn__3{
    display: flex;
    align-items: center;
    align-content: stretch;
    justify-content: center;
    background: #00B900;
    border: none;
    border-radius: 60px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    padding: 16px 0;
    margin: 0 auto;
    transition: 0.3s ease-in;
}
.line .modal--content .btn__3 p{
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
}
.line .modal--content .btn__3:hover{
    opacity: 0.7;
    transition: 0.3s ease-in;
}
.line .modal--content .btn__3 img{
    width: 24px;
    height: 24px;
    margin-right: 20px;
}
.line .modal--content .btn__3 p{
    margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
    .modal--bg{
        padding: 0 20px;
    }
    .modal--content{
        max-width: 100%;
        width: 100%;
        padding: 0 40px;
    }
}
@media only screen and (max-width: 768px) {
    .modal--content{
        padding: 0 20px;
    }
}

/*btn
———————————————————————————————————————————————————————————————————*/
#btn .type2__inner--3row{
    padding: 0 18px;
}
@media only screen and (max-width: 1024px) {
    #btn .type2__inner--3row{
        padding: 0 32px;
    }
    #btn .type2__inner--3row a{
        margin-bottom: 40px;
    }
    #btn .type2__inner--3row a:last-of-type{
        margin-bottom: 0;
    }
}
@media only screen and (max-width: 768px) {
    #btn .type2__inner--3row{
        padding: 0 26px;
    }
    #btn .type2__inner--3row a{
        margin-bottom: 32px;
    }
    #btn .type2__inner--3row a:last-of-type{
        margin-bottom: 0;
    }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fade
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*非表示
———————————————————————————————————————————————————————————————————*/
.effect__fade,.effect__fade > div,.effect__fade > a{
    opacity: 0;
    transform : translate(0, 8px);
    transition: all 2.00s;
}

/*表示
———————————————————————————————————————————————————————————————————*/
.effect__fade.effect__scroll,.effect__fade.effect__scroll > div,.effect__fade.effect__scroll > a{
    opacity: 1;
    transform : translate(0, 0);
}
.effect__fade.effect__scroll > div:nth-of-type(2) {
	-moz-transition-delay: 0.25s;
	-webkit-transition-delay: 0.25s;
	-o-transition-delay: 0.25s;
	-ms-transition-delay: 0.25s;
    transition-delay: 0.25s;
}
.effect__fade.effect__scroll > div:nth-of-type(3) {
	-moz-transition-delay: 0.50s;
	-webkit-transition-delay: 0.50s;
	-o-transition-delay: 0.50s;
	-ms-transition-delay: 0.50s;
    transition-delay: 0.50s;
}
.effect__fade.effect__scroll > div:nth-of-type(4) {
	-moz-transition-delay: 0.75s;
	-webkit-transition-delay: 0.75s;
	-o-transition-delay: 0.75s;
	-ms-transition-delay: 0.75s;
    transition-delay: 0.75s;
}
.effect__fade.effect__scroll > div:nth-of-type(5) {
	-moz-transition-delay: 1.00s;
	-webkit-transition-delay: 1.00s;
	-o-transition-delay: 1.00s;
	-ms-transition-delay: 1.00s;
    transition-delay: 1.00s;
}
.effect__fade.effect__scroll > div:nth-of-type(6) {
	-moz-transition-delay: 1.25s;
	-webkit-transition-delay: 1.25s;
	-o-transition-delay: 1.25s;
	-ms-transition-delay: 1.25s;
    transition-delay: 1.25s;
}
.effect__fade.effect__scroll > div:nth-of-type(7) {
	-moz-transition-delay: 1.50s;
	-webkit-transition-delay: 1.50s;
	-o-transition-delay: 1.50s;
	-ms-transition-delay: 1.50s;
    transition-delay: 1.50s;
}
.effect__fade.effect__scroll > div:nth-of-type(8) {
	-moz-transition-delay: 1.75s;
	-webkit-transition-delay: 1.75s;
	-o-transition-delay: 1.75s;
	-ms-transition-delay: 1.75s;
    transition-delay: 1.75s;
}
.effect__fade.effect__scroll > a:nth-of-type(2) {
	-moz-transition-delay: 0.25s;
	-webkit-transition-delay: 0.25s;
	-o-transition-delay: 0.25s;
	-ms-transition-delay: 0.25s;
    transition-delay: 0.25s;
}
.effect__fade.effect__scroll > a:nth-of-type(3) {
	-moz-transition-delay: 0.50s;
	-webkit-transition-delay: 0.50s;
	-o-transition-delay: 0.50s;
	-ms-transition-delay: 0.50s;
    transition-delay: 0.50s;
}