﻿@charset 'utf-8';

/*==================================================*/

h2 + h2 {
    margin-bottom: 40px;
}

.description {
    border-bottom: 0px;
}

/*==================================================*/

div.container .arrive-wrapper {
    width: 100%;
}

.arrive {
    margin: 56px auto;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.arrive .arrow-desktop {
    width: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.arrive .arrow-desktop::after {
    content: '';
    position: absolute;
    width: 1px;
    background-color: white;
    top: 0px;
    bottom: 0px;
    left: 50%;
}

.arrive .arrow-desktop div {
    font-size: 24px;
	line-height: 1.2em;
    text-align: center;
    position: relative;
    background-color: #1d1a16;
    z-index: 10;
}

.arrive .arrow-desktop .before{
    padding-bottom: 16px;
}

.arrive .arrow-desktop .after {
    padding-top: 16px;
    padding-bottom: 56px;
}

.arrive .arrow-desktop .after::before {
    content: '▼';
    position: absolute;
    color: #fff;
    top: 0px;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, -18px);
	font-size: 11px;
}

.arrive .links {
    width: calc(100% - 220px);
}

.arrive .links .before,
.arrive .links .after {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.arrive .links .before-title,
.arrive .links .after-title {
    display: none;
}

.arrive .links .before {
    border-bottom: 1px solid #2e2a23;
    margin-bottom: 30px;
}

.arrive .links a {
    display: block;
    width: 33%;
    margin-bottom: 40px;
}

.arrive .links a div {
    display: flex;
    justify-content: flex-start;
}

.arrive .links a img {
    width: auto;
    height: 32px;
    display: block;
    margin-right: 8px;
}

.arrive .links a p {
    font-size: 16px;
    line-height: 1.4em;
    align-self: center;
    /*margin-bottom: 15px;*/
}

.arrive .links .before {
}

@media screen and (max-width:660px) {
    div.container .arrive-wrapper {
        width: calc(100% - 32px);
    }

    .arrive {
        display: block;
		position: relative;
    }

    .arrive::before {
        content: '';
        position: absolute;
        width: 1px;
        background-color: white;
        top: 12px;
        bottom: 16px;
        left: 8px;
    }
     
    .arrive::after {
        content: '▼';
        position: absolute;
        color: #fff;
        bottom: 4px;
        left: 8px;
        transform: translate(-43%, 0%);
    }
    
    .arrive .arrow-desktop {
        display: none;
    }
  
    .arrive .arrow-desktop::after {
        content: none;
    }
    
    .arrive .links {
        width: 100%;
    }
    
    .arrive .links .before-title,
    .arrive .links .after-title {
        display: block;
        font-size: 24px;
		padding-left: 32px;
        margin-bottom: 20px;
    }

    .arrive .links .after-title {
        padding-top: 20px;
    }

    .arrive .links .before,
    .arrive .links .after {
        padding-top: 20px;
        border-bottom: 0px;
        margin-left: 32px;
        margin-bottom: 16px;
        position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
    }
   
    .arrive .links a {
        width: 49%;
        margin-bottom: 24px;
    }
    
    .arrive .links a div {
        display: flex;
        justify-content: flex-start;
    }
    
    .arrive .links a img {
        width: auto;
        height: 30px;
        display: block;
        margin-right: 8px;
    }
    
    .arrive .links a p {
        font-size: 15px;
        line-height: 1.4em;
        align-self: center;
        /*margin-bottom: 15px;*/
    }
    
    .arrive .links .before {
    }

	.arrive .links .after a:last-of-type {
		margin-bottom: 0;
	}
}

/*==================================================*/

.icons-wrapper {
    border-top: 1px solid #2e2a23;
    padding: 56px;
    margin: 0px auto 0px;
    text-align: center;
}

.icons {
    display: flex;
    justify-content: center;
    padding: 32px 0;
}

.icons .single {
    display: flex;
    flex-direction: column;
    margin: 0 5px;
    width: 160px;
    position: relative;
}

.icons .single img {
    width: 32px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.icons .single p {
}

@media screen and (max-width:660px) {

    .icons-wrapper {
        margin: 0px auto;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .icons {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .icons .single {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        margin: 0 0 20px;
        width: 50%;
        position: relative;
    }
    
    .icons .single img {
        width: 30px;
        height: 30px;
        display: block;
        margin: 0;
    }
    
    .icons .single p {
        width: calc(100% - 50px);
        font-size: 14px;
        text-align: left;
        line-height: 1.4em;
        padding-top: 7px;
    }

}

/*==================================================*/

.contents-wrapper {
    margin: 0px auto 130px;
	padding-top: 32px;
    text-align: left;
}

.contents-wrapper.when {
    margin-bottom: 100px;
}

.contents {
    display: flex;
    justify-content: space-around;
    margin-bottom: 100px;
}

.contents:last-of-type {
    margin-bottom: 0px;
}

.contents .img {
    width: 600px;
}

.contents .img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.contents .content {
    width: calc(100% - 50px);
}

.contents .content .label {
    display: inline-block;
    background-color: #c1a06c;
    color: #000;
    padding: 4px 16px;
    border-radius: 11px;
    font-weight: 300;
    font-size: 14px;
    line-height: 1em;
    margin-bottom: 16px;
}

.contents .content .title {
    display: flex;
    justify-content: flex-start;
	margin-bottom: 16px;
}

.contents .content p {
    font-size: 16px;
    margin-bottom: 32px;
}

.contents .content .title img {
    width: auto;
    height: 32px;
    display: block;
    margin-right: 8px;
}

.contents .content .title p {
    font-size: 24px;
	line-height: 32px;
	margin-bottom: 0;
}

.contents .content .insert {
    display: none;
}

.contents .content .insert img {
    display: block;
    max-width: 70%;
    margin: 0 auto 45px;
}

span.help-block,
.contents .content .content-s p {
    display: block;
    font-size: 12px;
    margin-bottom: 0px;
    line-height: 1.5em;
}

.contents .content .content-s a {
    font-size: 12px;
    margin-bottom: 0px;
    line-height: 1.5em;
    color: #c1a06c;
	padding-top: 16px;
	display: inline-block;
}

.contents .content .content-s .title {
    margin-bottom: 12px;
}

.contents .content .content-s .title img {
    width: auto;
    height: 20px;
    display: block;
    margin-right: 8px;
}

.contents .content .content-s .title p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0px;
}

@media screen and (max-width:660px) {

    .contents-wrapper {
        text-align: left;
    }
    
    .contents-wrapper.when {
    }
    
    .contents {
        display: block;
    }
    
    .contents .img,
    .contents .img img {
        display: none;
        width: 0;
    }
    
    .contents .content {
        width: 100%;
    }
    
    .contents .content .label {
    }
    
    .contents .content .title {
    }
    
    .contents .content .insert {
        display: block;
    }
    
    .contents .content .insert img {
    }
    
    span.help-block,
    .contents .content .content-s p {
    }
    
    .contents .content .content-s .title p {
    }

}
 
/*==================================================*/

.premium .inner {
    background-image: url(../../lp/etiquette/img/bg@2x.png);
}
    
@media screen and (max-width:660px) {
    .premium .inner {
        background-image: none;
    }
}

/*==================================================*/

/*==================================================*/
