/*--- Index ------------------------

1. Common HTML elements
2. Selection
3. Button
4. Icons
5. Nobr

<TOP PAGE>
Top-1. Top-Salonlist
Top-2. TOP Hair Catalog
Top-3. TOP News & Blog
Top-4. TOP About-Recruit-Company

<2nd>
Breadcrumb
page_title_block

<HAIR CATALOG>

<VC BLOG>

<SALON LIST>

<COMPANY>

<POLICY>

<ABOUT US>

<INQUIRY>

<RECRUIT>

<Scroll To Section>

<404>

※ 年度によるISTの更新部分 ※
<Header>　
  背景色の更新/1
  背景色の更新/2
  …1と2は同色で
<zoom slider>
　89行目 background: #dffaf1;
  キービジュアルの背景色に合わせる
------------------------------------*/

/* -----------------------------------------------------------------------------
  Top Intro
--------------------------------------------------------------------------------*/

.intro {
  display: table;
  width: 100%;
  height: auto;
  text-align:
  center; color: #fff;
  position: relative;/**/
  top:0;
  }

.intro .intro-body {
  display: table-cell;
  vertical-align: middle;
  padding: 300px 0 0;}

.intro .intro-body .brand-heading {font-size: 150%;}

.intro .intro-body .intro-text { font-size: 18px;}

@media(min-width:768px) {
    .intro { height: 100vh; padding: 0;}

    .intro .intro-body .brand-heading {font-size: 200%;}

    .intro .intro-body .intro-text {font-size: 26px;}
}

/*****************************************
 zoom slider
*****************************************/

#zoom_slider {
  position: absolute;/**/
  width: 100%;
  height: 100vh;
  z-index: -9999999;
  top: 50px;
  left: 0;
  overflow: hidden;
  background: #dffaf1;
}

#zoom_slider div {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

@media(max-width:1023px) {
  .intro {
    position: relative;
  }
  #zoom_slider {
    height: 100%;
  }
}

/*
#zoom_sliderの中に
枚数分の空divを設置して
3枚なら3,2,1と降順に背景画像を指定
 */



/* 1枚目 */
#zoom_slider div:nth-child(4) {
  background-image: url("../img/index/index.jpg");
  background-position: center center;/*2020年のみ、left 本来は、center center*/
  background-size: cover;
}

/* 2枚目 */
#zoom_slider div:nth-child(3) {
  background-image: url("../img/index/ebisu.jpg");
  background-position: center center;
  background-size: cover;
}

/* 3枚目 */
#zoom_slider div:nth-child(2) {
  background-image: url("../img/index/index_2025_22_202512.webp");
  background-position: center center;/*2020年のみ、left 本来は、center center*/
  background-size: cover;
}

/* 4枚目 */
#zoom_slider div:nth-child(1) {
  background-image: url("../img/index/index_2025_33_202512.webp");
  background-position: center center;/*2020年のみ、left 本来は、center center*/
  background-size: cover;
}

#zoom_slider div {
  animation-name: anim_slides;
  animation-duration: 24s; /* 時間の基準 */
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-delay: 0;
  animation-play-state: running;
  animation-fill-mode: forwards;
}

@media(max-width:767px) {
　
}


@keyframes anim_slides {
    0% {
        opacity:0;
        transform: scale(1.2, 1.2);
    }
    10% {
        transform: scale(1.2, 1.2);
        opacity:1;
    }
    30% {
        transform: scale(1, 1);
        opacity:1;
    }
    45% {
        opacity:0;
    }
    100% {
        opacity:0;
    }
}


/* 1枚目 */
#zoom_slider div:nth-child(4) {
  animation-delay: 0s;
}
/* 2枚目 */
#zoom_slider div:nth-child(3) {
  animation-delay: 6s; /* 時間の基準÷枚数×1 */
}
/* 3枚目 */
#zoom_slider div:nth-child(2) {
  animation-delay: 12s;
}
/* 4枚目 */
#zoom_slider div:nth-child(1) {
  animation-delay: 18s; /* 時間の基準÷枚数×1 */
}
/* 3枚目
#zoom_slider div:nth-child(1) {
  animation-delay: 20.0s;
}*//* 時間の基準÷枚数×2 */


.wrap {
  overflow: hidden;
}

/* 下記に.wrap外にある要素を記述してください */
.intro, .wrap {
  transition: all .2s;
}
.intro.active, .wrap.active {
  transform: translateX(-60%);
  transition: all .2s;
}

.Top-Salonlist {
  padding-top: 50px;
}

/*----------------------------------
1. Common HTML elements
------------------------------------*/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

html {
  overflow-x: hidden;
}

html, html a, body {
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 1rem;
  font-family: 'Oswald',"Yu Gothic", YuGothic,sans-serif;
  color: #222324;
  line-height: 1.6;
  background-color: #fff;
}



/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-family: 'Oswald', "Yu Gothic", YuGothic,sans-serif;
  line-height: 1.2;
  color: #111;
  margin-top: 0;
  margin-bottom: .5rem;
  letter-spacing: 0.2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize;
  margin-bottom: 0.75rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #242424;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

h1 a:focus, h1 a:hover,
h2 a:focus,
h2 a:hover,
h3 a:focus,
h3 a:hover,
h4 a:focus,
h4 a:hover,
h5 a:focus,
h5 a:hover,
h6 a:focus,
h6 a:hover {
  color: #13b1cd;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

em,
li {
  font-size: 1rem;
  font-weight: 300;
  color: #242424;
}

em > a,
li > a {
  color: #242424;
}

em > a:hover,
li > a:hover {
  color: #13b1cd;
}

small {
  color: #656565;
}

label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #242424;
  margin-bottom: .25rem;
}

i {
  line-height: 1;
}

/* Paragraph */
p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #242424;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: #666;
  text-decoration: none;
}

a :visited, a:hover, a:active {
  color: #666;
  text-decoration: none;
}

a:focus {
  color: #666;
  outline: none;
}

a img:hover {
opacity: 0.6;
filter: alpha(opacity=60);
-moz-opacity:0.6;
}

/* Hr */

hr{
    border:none;
    border-top:solid 1px #999;
    height:1px;
    color:#FFFFFF;
    margin: 0 ;
    padding: 0;
}

/* br PCで非効果 */
@media screen and (min-width: 600px) {
  .nobr_lg br { display: none;}
}


/* br smpで非効果 */
@media screen and (min-width: 1000px){
  .nobr_smp br {display: block;}
}

@media(max-width:767px) {
  .nobr_smp br {display: none;}
}

/*----------------------------------
2. Selection
------------------------------------*/
::selection {
  color: #fff;
  background: #13b1cd;
  text-shadow: none;
}

::-webkit-selection {
  color: #fff;
  background: #13b1cd;
  text-shadow: none;
}

:active,
:focus {
  outline: none;
}

/*----------------------------------
3. Button
------------------------------------*/
.s-btn {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  border: none;
  white-space: nowrap;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-btn:focus, .s-btn:hover {
  text-decoration: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-btn.focus {
  text-decoration: none;
}

.s-btn:active, .s-btn.active {
  background-image: none;
  outline: 0;
}

.s-btn.disabled, .s-btn:disabled,
fieldset[disabled] .s-btn {
  cursor: not-allowed;
  opacity: .65;
}

.s-btn__element--left, .s-btn__element--right {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}


/* Sizes
------------------------------ */
.s-btn--xs {
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.5rem 1.25rem;
}

.s-btn--sm {
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.75rem 1.25rem;
}

.s-btn--md {
  font-size: 0.8125rem;
  font-weight: 400;
  padding: 1rem 2.5rem;
}

.s-btn-icon--md {
  font-size: 1rem;
  padding: 0.9375rem 1.5625rem 0.75rem;
}

/* Styles
------------------------------ */
.s-btn--white-brd {
  color: #fff;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #fff;
}

.s-btn--white-brd:focus, .s-btn--white-brd:hover {
  color: #222324;
  background: #fff;
  border-color: #fff;
}

.s-btn--white-bg {
  color: #222324;
  background: #fff;
}

.s-btn--white-bg:focus, .s-btn--white-bg:hover {
  color: #13b1cd;
  background: #fff;
}

.s-btn--dark-bg {
  color: #fff;
  background: #222324;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #222324;
}

.s-btn--dark-bg:focus, .s-btn--dark-bg:hover {
  color: #fff;
  background: #13b1cd;
  border-color: #13b1cd;
}

.s-btn--dark-brd {
  color: #222324;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #222324;
}

.s-btn--dark-brd:focus, .s-btn--dark-brd:hover {
  color: #fff;
  background: #222324;
  border-color: #222324;
}

.s-btn--primary-bg {
  color: #fff;
  background: #13b1cd;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #13b1cd;
}

.s-btn--primary-bg:focus, .s-btn--primary-bg:hover {
  color: #fff;
  background: #13b1cd;
  border-color: #13b1cd;
}

.s-btn--primary-brd {
  color: #13b1cd;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #13b1cd;
}

.s-btn--primary-brd:focus, .s-btn--primary-brd:hover {
  color: #fff;
  background: #13b1cd;
  border-color: #13b1cd;
}

.s-btn-icon--white-brd {
  border-left: none;
}

.s-btn-icon--dark-brd {
  border-left: none;
}


/*----------------------------------
4. Icons
------------------------------------*/
.s-icon {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-icon:focus, .s-icon:hover {
  text-decoration: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/*----------------------------------
5. Nobr_ 改行
------------------------------------*/

/* br PCで非効果 */
@media screen and (min-width: 600px) {
  .nobr_lg br { display: none;}
}

/* br smpで非効果 */
@media screen and (min-width: 1000px){
  .nobr_smp br {display: block;}
}

@media(max-width:767px) {
  .nobr_smp br {display: none;}
}


/*----------------------------------
<TOP PAGE>
Top-1. Top-Salonlist
------------------------------------*/
.Top-Salonlis { padding-top: 6rem;
content: ""; display: block; /*padding-top: 50%*/;}

.list-circle {
    width: 150px;
    height:150px;
    margin: 0 auto;
    font-size: 1rem;
    text-decoration: none;
    display: block;
    text-align: center;
    line-height: 150px;
    color: #fff;
    background: #000;
    border-radius: 50%;
}

.list-circle a {color: #fff;}
.list-circle :hover {color: #666;}

@media (max-width: 62em) {
.list-circle {
    width: 120px;
    height:120px;
    margin: 0 auto;
    font-size: 0.8rem;
    text-decoration: none;
    display: block;
    text-align: center;
    line-height: 120px;
    color: #fff;
    background: #000;
    border-radius: 50%;
}
}

@media (max-width: 23em) {
.list-circle {
    width: 130px;
    height:130px;
    margin: 0 auto;
    font-size: 0.8rem;
    text-decoration: none;
    display: block;
    text-align: center;
    line-height: 130px;
    color: #fff;
    background: #000;
    border-radius: 50%;
}
}

.top-Salonlist h3{
  position: relative;
  margin-bottom: 3em;
}

.top-Salonlist h3:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;/*線の上下位置*/
  display: inline-block;
  width: 60px;/*線の長さ*/
  height: 2px;/*線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: #666;/*線の色*/
  border-radius: 2px;/*線の丸み*/
}

/*----------------------------------
Top-2. TOP Hair Catalog
------------------------------------*/
.top-hairevcatalog { padding-top: 6rem; padding-bottom: 1rem}

.cbp-items{/*display: inline-block;*/ margin: 0;padding: 0;overflow: hidden;}

#top-hairevcatalog h3{text-align: right;font-weight: bold;}

#top-hairevcatalog .col-sm-4{padding: 0 0rem;}/**/
#top-hairevcatalog .col-sm-6{padding: 0 .57rem;}

/*----------------------------------
Top-2. TOP Hair Catalog
------------------------------------*/
#top-hairevcatalog_2022 h3{
  text-align: center; font-weight: bold; position: absolute; bottom: 0;
left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  width: 100%;}

#top-hairevcatalog_2022.row_flex{ display: flex; flex-wrap: wrap;}
#top-hairevcatalog_2022.row_flex .order1{order: 1;}
#top-hairevcatalog_2022.row_flex .order2{order: 3;}
#top-hairevcatalog_2022.row_flex .order3{order: 2;}

#top-hairevcatalog_2022 .col-sm-4{padding: .57rem; position: relative; }/**/
#top-hairevcatalog_2022 .col-sm-6{padding: .57rem; position: relative;}

#top-hairevcatalog_2022 figure.effect-oscar figcaption {
  padding: 1em;
  -webkit-transition: background-color 0.35s;
  transition: background-color 0.35s;
}

#top-hairevcatalog_2022 .pc_only{
  display: block;
}

@media screen and (max-width: 767px) {
  #top-hairevcatalog_2022 .pc_only{
  display: none;
}
}

@media screen and (max-width: 819px) {

#top-hairevcatalog_2022.row_flex .order1{order: 1;}
#top-hairevcatalog_2022.row_flex .order2{order: 2;}
#top-hairevcatalog_2022.row_flex .order3{order: 3;}

#top-hairevcatalog_2022 .col-sm-6{padding: 0 0 .57rem;}
  }

/*----------------------------------
Top-3. TOP News & Blog
------------------------------------*/
.top-NewsBlog { padding-top: 6rem; padding-bottom: 2rem}

.top-NewsBlog .block{
  margin-bottom: 1.875rem;
}

.top-NewsBlog .photo{
  width: 100%;
  height: 100%;
  position: relative;
}
.top-NewsBlog .photo::before{
  content: "";
  display: block;
  padding-bottom: 66.667%;

}
.top-NewsBlog .photo a{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.top-NewsBlog .photo img{
  width: 100%;
  height: auto;
  line-height: 0;
  position: absolute;
  top:0;
}

.top-NewsBlog h3.blog_title {
  font-size: 1.125rem !important;
  letter-spacing: normal;
}

.top-NewsBlog .coment{
  padding: 10px 20px 20px;
}

.top-NewsBlog p.title{
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .125rem;
  color: #fff;
  text-align: center;
  background: #222324;
  padding: .2rem .4rem;
}

.top-NewsBlog h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: .4em;
}

.top-NewsBlog p.text {
  height: 60px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

/*----------------------------------
Top-4. TOP About-Recruit-Company
------------------------------------*/
#top-about-recruit-company{
  padding-top: 5rem; padding-bottom: 0;
}

#top-about-recruit-company .col-sm-4{
  margin-bottom: 1rem;
}

.local_nav {
  background:#fff; padding:0; border:solid 1px #ccc; font-size:1.8rem;
  }
  
.local_nav p{display:inline-block; vertical-align:middle; margin: 0;}
.local_nav h2.text{
  font-size: 1.5rem;
  padding-left: .5rem;
  display:inline-block;
  vertical-align:middle;
  margin: 0;
  line-height: 1;
}  

.local_nav h2.text span {
  font-size:.9rem;
  letter-spacing: normal;} 

.local_nav img { width:9rem;}

@media screen and (max-width: 1112px) {
  .local_nav h2.text{ padding-left: .4rem; font-size: 1.2rem;}
  .local_nav h2.text span {
  font-size:.7rem;
  letter-spacing: normal;} 
  .local_nav img { width:5rem;}
}

@media screen and (max-width: 480px) {
  #top-about-recruit-company{
  padding-top: 1rem; padding-bottom: 0;
}
  .local_nav h2.text{ padding-left: .5rem;}
  .local_nav img { width:8rem;}
}
  
.local_nav:hover {
  border:solid 1px #13b1cd;
  }

/*----------------------------------
<2nd>
------------------------------------*/

/* Breadcrumb */
.breadcrumb{
  background-color: #fff !important;
  text-align: right;
  padding: 0;
  margin:10px 0 0 ;
}

.breadcrumb li{
  display: inline-block;
  padding-right: .5rem;
  vertical-align: middle;
}

.breadcrumb li:after {
  font-family: 'FontAwesome';
  content: "\f0da";
  margin-left: .3rem;
  vertical-align: middle;
  line-height: 1rem;
  font-size: .8rem;
}

.breadcrumb li:last-child:after{
  content: none;
  margin-left: 0;
  vertical-align: middle;
  line-height: 1rem;
}

.breadcrumb h3{
  font-size: 1em;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: normal;
}

/* Page_title_block / Page_title */

.page_title_block{padding-top:4.0625rem; ;padding-bottom:2rem; text-align: center;}

h1.page_title{font-size: 1.5rem; padding-top:4.0625rem; letter-spacing: 0.2em;}

/* Extra large screen / wide desktop */
@media (min-width: 62em) {
.page_title_block{padding-top:6.875rem; ;padding-bottom:5rem;}

h1.page_title{font-size: 1.75rem; padding-top:4.0625rem;}
  }



/*----------------------------------
<HAIR CATALOG>
------------------------------------*/
.bg-catalog {
  background: linear-gradient(45deg, #ffe9f1, #ffdedb, #ffe5ca);
  background-size: 400% 400%;
  opacity: 1;
  animation: animation_002 5s ease infinite;;
}

@keyframes animation_002 {
  0% {
    background-position:0% 50%;
  }
  50% {
    background-position:100% 50%;
  }
  100% {
    background-position:0% 50%;
  }
}

.hair_filter{
  padding-top: 1.25rem;
  padding-bottom: 0.625rem;
}


/*----------------------------------
<VC BLOG>
------------------------------------*/
.bg-vcblog {
  background: linear-gradient(45deg, #e2ccfd, #d9dafd, #cfdffb);
  background-size: 400% 400%;
  opacity: 1;
  animation: animation_002 5s ease infinite;;
}

/*----------------------------------
<SALON LIST>
------------------------------------*/
.bg-salonlist {
  background: linear-gradient(45deg, #e7ffd8, #dafee6, #b4f9ff);
  background-size: 400% 400%;
  opacity: 1;
  animation: animation_002 5s ease infinite;;
}

/* index */
.salon_area_title{
  background: #edeef2;
  padding:1rem 2rem .5rem;
  margin-bottom: 1rem;
}
/* index */

.shop_info{background-color: #f5f8f9 !important;}

h2.salon_name{
  font-size: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #111;
}

.maY20{margin: 20px 0}

h2.tel{
  font-size: 1.5rem;
}

h2.tel:before {
  font-family: 'FontAwesome';
  content: "\f098";
  margin-right: .5rem;
}


/* salon_icon */
ul.salon_icon{margin: 0 auto; padding: 0; text-align: center;}

ul.salon_icon li{
  display: inline-block;
  margin-right: .2rem;
  vertical-align: middle;
  padding: .3rem .6rem;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: .5rem;
  letter-spacing: -0.1em;
}

.nail {color: #fff; background: #e62566;}
.eyelash {color: #fff; background: #6842b3;}
.esthe {color: #fff; background: #2098f7;}
.headspa {color: #fff; background: #1fbbd1;}
.carecolor {color: #fff; background: #0ab452;}
.kitsuke {color: #fff; background: #cfb902;}

/* salon saloninfo */

table.saloninfo {
    padding:0px;
    margin:0px auto 10px;
    border-top:1px solid #ccc;
  width: 98%;color:#444;
}
table.saloninfo tr {
    padding:0px;
    margin:0px;
    border-bottom:1px solid #ccc;}

table.saloninfo th {
    padding:10px 15px;
    margin:0px;
    vertical-align:middle;
    font-size: .75rem;
    width: 25%;
  }

table.saloninfo td {
    padding:10px 15px;
    margin:0px;}

table.saloninfo tr:hover { background-color:#f5f5f5;}

/* 表示領域が480px以下の場合 */
@media screen and (max-width: 480px) {
table.saloninfo th {
    display:block;
    width:100%;}
table.saloninfo td {
    display:block;
    width:100%;}
}

/*MAP BUTTON*/
.black{
  background: #111;
  color:#fff;
  border-radius:1rem;
}

.black:before{
  font-family: 'FontAwesome';
  content: "\f041";
  margin-right: .3rem;
  vertical-align: middle;
}

.black:hover{
  color:#ccc;
}

/* salon_guide */
ul.salon_guide{margin: 1.5rem auto 1rem; padding: 0; text-align: center;}

ul.salon_guide li{
  display: inline-block;
  margin: .2rem .2rem .5rem;
  vertical-align: middle;
  padding: 1rem 1.8rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: -0.1em;
  background: #111;
  color: #fff;
}

ul.salon_guide li:before{
  font-family: 'FontAwesome';
  content: "\f107";
  margin-right: .5rem;
  vertical-align: middle;
}

/* 表示領域が480px以下の場合 */
@media screen and (max-width: 480px) {
ul.salon_guide li{
  display: inline-block;
  margin: .2rem .2rem .5rem;
  vertical-align: middle;
  padding: 1rem 1rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: -0.1em;
  background: #111;
  color: #fff;
}

ul.salon_guide li:before{
  font-family: 'FontAwesome';
  content: "\f107";
  margin-right: .3rem;
  vertical-align: middle;
}
  }

ul.salon_guide li a{color: #fff;}

/*menu_info*/
h2.menu_info{
  border-top: 2px solid #111;
  font-size: 1em;
  font-weight: 600;
  margin: 0;
  padding: 1em 1em 0;
}

/* salon guideline */

table.guideline {
    padding:0px;
    margin:0px auto 10px;
    border-top:1px solid #ccc;
    width: 98%;color:#444;
}
table.guideline tr {
    padding:0px;
    margin:0px;
    border-bottom:1px solid #ccc;}
table.guideline th {
    padding:10px 15px;
    margin:0px;
  vertical-align:top;}
table.guideline th span {
     font-size: .75em;
     font-weight: 200;
}
table.guideline td {
    padding:10px 15px;
    margin:0px;}
table.guideline td span {
     font-size: .75em;
     font-weight: 200;
}

table.guideline .tax{
    font-size: .75em;
     font-weight: 200;}

table.guideline tr:hover { background-color:#f5f5f5;}

ul.list_guide {
    padding:0px;
    margin:0px 0px 0px 20px;}
ul.list_guide > li {
    padding:0px;
    margin:0px;
    list-style:none; }

ul.list_guide2 {
    padding:0px;
    margin:0px 0px 0px 0px;}
ul.list_guide2 > li {
    padding:0px;
    margin:0px;
    list-style:none; }

/* 表示領域が480px以下の場合 */
@media screen and (max-width: 480px) {
table.guideline th {
    display:block;
    width:100%;}
table.guideline td {
    display:block;
    width:100%;}
}

/*staff*/
h2.staff_info{
  border-top: 2px solid #111;
  border-bottom:1px solid #666;
  font-size: 1em;
  font-weight: 600;
  margin: 2rem 0;
  padding: 1em 1em;
}
.staff_name{font-weight: 600;}

/*map*/
h2.shops_map{
  border-top: 2px solid #111;
  border-bottom:1px solid #666;
  font-size: 1em;
  font-weight: 600;
  margin: 2rem 0;
  padding: 1em 1em;
}

.google-map {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}
.google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Salon_area list-circle2 */

.Salon_index { padding-top: 3rem; border-top: solid 1px #ccc;}

.Salon_area h3{
  position: relative;
  margin-bottom: 2em;
}

.Salon_area h3:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;/*線の上下位置*/
  display: inline-block;
  width: 60px;/*線の長さ*/
  height: 2px;/*線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: #666;/*線の色*/
  border-radius: 2px;/*線の丸み*/
}

.list-circle2 {
    width: 120px;
    height:120px;
    margin: 0 auto;
    font-size: 1rem;
    text-decoration: none;
    display: block;
    text-align: center;
    line-height: 120px;
    color: #fff;
    background: #000;
    border-radius: 50%;
}

.list-circle2 a {color: #fff; }
.list-circle2 :hover {color: #666;}

@media (max-width: 62em) {
.list-circle2 {
    width: 90px;
    height:90px;
    margin: 0 auto;
    font-size: 0.7rem;
    text-decoration: none;
    display: block;
    text-align: center;
    line-height: 90px;
    color: #fff;
    background: #000;
    border-radius: 50%;
}
}

@media (max-width: 23em) {
.list-circle2 {
    width: 100px;
    height:100px;
    margin: 0 auto;
    font-size: 0.8rem;
    text-decoration: none;
    display: block;
    text-align: center;
    line-height: 100px;
    color: #fff;
    background: #000;
    border-radius: 50%;
}
}

/*
EBISU 恵比寿店
---------------------------*/
.bg-salonlist_EBISU {
  background: url(../img/salon/Ebisu_bg.jpg);
  background-size: auto 100%;
  background-position: center center;
  opacity: 1;
}

/* Page_title_block_EBISU / Page_title */

.page_title_block_EBISU{padding-top:6rem; ;padding-bottom:5rem; text-align: center;}

h1.page_title_EBISU{color:#fff; font-size: 1.5rem; padding-top:4.0625rem; letter-spacing: 0.2em;}

h1.page_title_EBISU small{
  color:#fff !important;
}
/* Extra large screen / wide desktop */
@media (min-width: 768px) {
.bg-salonlist_EBISU {
  background: url(../img/salon/Ebisu_bg.jpg);
  background-size: 100% 100%;
  background-position: center center;
  opacity: 1;
}

.page_title_block_EBISU{padding-top:12rem; padding-bottom:10rem;}

h1.page_title_EBISU{font-size: 1.75rem; padding-top:4.0625rem;}
  }

.Photo-section{margin-bottom: 2rem}

.Photo-section .read{text-align: center; margin: 1rem;}

.Photo-section .col-xs-12{margin-bottom: 1rem}

.Photo-section .col-xs-6{
  padding-left: 1px;
  padding-right: 1px;
  margin:1px 0;}

figure.salon_images {
  position: relative;
  overflow: hidden;
  text-align: left;
}
figure.salon_images * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}
figure.salon_images img {
  max-width: 100%;
  position: relative;
  opacity: 1;
}
figure.salon_images figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 10px;
  z-index: 1;
  opacity: 0;
}
figure.salon_images h3,
figure.salon_images p {
  margin: 0;
}
figure.salon_images h3 {
  display: inline-block;
  letter-spacing: -1px;
  text-transform: uppercase;
  font-weight: 400;
}
figure.salon_images h3 span {
  font-weight: 800;
}

figure.salon_images h3{
  font-size: 1.75rem;
}

@media (max-width: 767px) {

figure.salon_images h3{
  font-size: 1rem;
}
  }

figure.salon_images p {
  margin: 0;
  font-size: .9em;
  font-weight: 600;
}
figure.salon_images:after {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  content: '';
  background: #ffffff;
  position: absolute;
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
  opacity: 0;
}
figure.salon_images a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

figure.salon_images:hover img,
figure.salon_images.hover img {
  opacity: 0.5;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
figure.salon_images:hover figcaption,
figure.salon_images.hover figcaption {
  opacity: 1;
}
figure.salon_images:hover:after,
figure.salon_images.hover:after {
  opacity: 0.3;
}


/*----------------------------------
  <COMPANY>
------------------------------------*/
.bg-campany {
  background: linear-gradient(45deg, #fffeca, #eaffcd, #e2ffcb);
  background-size: 400% 400%;
  opacity: 1;
  animation: animation_002 5s ease infinite;;
}

.campany_info {
  border-top: 2px solid #111;
  border-bottom:1px solid #666;
  margin: 2rem 0;
  padding: 1em 1em;
}

.campany_info h2{
  font-size: 1em;
  font-weight: 600;
  display: inline;
  float: left;
  margin-bottom: 0;
  padding: .3em;
}

@media (max-width: 23em) {
.campany_info h2{
  padding: 0 .3em;
}
}

.press_contact a{
  font-weight: 200;
  font-size: .8em;
  float: right;
  background: #222324;
  color: #fff;
  padding: .5em;
}

.press_contact a:hover{
  color: #fff;
  }

h2.company_greeting{
  font-size: 1em;
  font-weight: 600;
  padding: 1em 1em 0;
}
.company_text{
  margin: 1rem;
}

.ceo{
  margin: 1rem 1rem 0;
  text-align: right;
}

h2.campany_press {
  border-top: 2px solid #111;
  border-bottom:1px solid #666;
  margin: 2rem 0;
  padding: 1em 1em;
  font-size: 1em;
  font-weight: 600;
}

/*----------------------------------
  <POLICY>
------------------------------------*/

.policy_read{
  border: solid 1px #666;
  padding: 1rem;
}

@media (max-width: 23em) {
.policy_read{
  margin: 0 .8rem;
}
}

.policy_text{
margin-top: 2rem;
}

@media (max-width: 23em) {
.policy_read{
  margin: 1rem .8rem;
}
}

.policy_text h2{
  font-size: 1.1rem;
  padding-bottom: .5rem;
  border-bottom: solid 1px #666;
}

.policy_text h3{
  font-size: 1rem;
  margin-bottom: .2rem;
}

/*----------------------------------
  <ABOUT US>
------------------------------------*/
#infiniteslide1{width: 100%;}

.bg-aboutus {
  background: linear-gradient(45deg, #e1ffdb, #f3e7dd, #ffd8df);
  background-size: 400% 400%;
  opacity: 1;
  animation: animation_002 5s ease infinite;;
}

.aboutus .col-sm-3{
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 2rem;
}

.vc_img{
  margin-top: 2rem;
}

.vc_us{
  padding: 1.5rem 0 1rem;
}

@media (max-width: 23em) {
  .vc_img{
  margin-top: 1rem;
}
.vc_us{
  padding: 0rem 0 1rem;
}
}

h2.vc_us{
  letter-spacing: normal;
  font-size: 1.2em;
  text-align: center;
  margin-top: 2rem;
}

.vc_jpn{
  padding: 1rem 0;
}

h2.vc_jpn{
  font-size: 1.4em;
  text-align: center;
}

h6.about_japan{
  line-height: 1.5;
  text-align: center;
  margin: 0 5px;
}

@media screen and (max-width: 480px)  {
h6.about_japan{
  line-height: 1.5;
  text-align: left}
  }

/*----------------------------------
 <INQUIRY>
------------------------------------*/

.bg-inquiry{
  background: linear-gradient(45deg, #e2ccfd, #f8d5ec, #ffd8e7);
  background-size: 400% 400%;
  opacity: 1;
  animation: animation_002 5s ease infinite;;
}

/*----------------------------------
 <RECRUIT>
------------------------------------*/

.bg-recruit{
  background: linear-gradient(45deg, #c6fbff, #e7efe4, #ffe7d0);
  background-size: 400% 400%;
  opacity: 1;
  animation: animation_002 5s ease infinite;;
}

/* index */
h2.recruit_greeting{
  font-size: 1.25em;
  font-weight: 600;
  padding: 2em 1em 1em;
  text-align: center;
}

.recruit_photo .col-sm-4{
  padding-left: 1px;
  padding-right: 1px;
  margin:1px 0;
}


.voice_nav {
  background:#fff; 
  padding:0; border:
  solid 1px #ccc;
  font-size:1.8rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  }
  
.voice_nav p{
  display:inline-block; 
  vertical-align:middle; 
  margin: 0;
}

.voice_nav h2.text{
  font-size: 1.5rem;
  padding-left: .5rem;
  display:inline-block;
  vertical-align:middle;
  margin: 0;
  line-height: 1;
}

.voice_nav h2.text:hover{
  color: #13b1cd;
  }

.voice_nav h2.text span {
  font-size:.9rem;
  letter-spacing: normal;} 

.voice_nav img { width:20rem;}

@media screen and (max-width: 1112px) {
  .voice_nav h2.text{ padding-left: .4rem; font-size: 1.2rem;}
  .voice_nav h2.text span {
  font-size:.7rem;
  letter-spacing: normal;} 
  .voice_nav img { width:5rem;}
}

@media screen and (max-width: 480px) {
  #top-about-recruit-company{
  padding-top: 1rem; padding-bottom: 0;
}
  .voice_nav h2.text{ padding-left: .5rem;}
  .voice_nav img { width:8rem;}
}
  
.voice_nav:hover {
  border:solid 1px #13b1cd;
  }



h2.recruit_wecan{
  font-size: 1.25em;
  text-align: center;
  letter-spacing: normal;
}

 h2.recruit_wecan {
    border-top: 1px solid black;
    margin:23px 0 0;
    text-align:center;
    padding:0; height:24px;
}

  h2.recruit_wecan span {
    position: relative;
    top: -16px;
    padding: 0 20px;
    background:#f5f8f9;
}

.wecan{
  background: #fff;
  padding: 2rem 0;
  text-align: center;
  margin-bottom: 0;
}

.recruit_imsta {
  text-align: right;
}

.recruit_imsta a{
  color: #019cb8;
}

/*to VOICE BUTTON*/

.to_voice{
  background: #111;
  color:#fff;
  padding: 1rem;
  text-align: center;
  font-size: 1rem;
  margin: 1rem auto 2.5rem;
  font-weight: 500;
}

.to_voice:after{
  font-family: 'FontAwesome';
  content: "\f105";
  margin-left: 9rem;
  vertical-align: middle;
}

.to_voice:hover{
  color:#fff;
  background: #333;
}

/* recruit_list */
.recruit_area_select{
  background-color: #fff !important;
  text-align: right;
  padding: 0;
  margin:10px 0 0 ;
}

.recruit_area_select li{
  display: inline-block;
  padding-right: .5rem;
  vertical-align: middle;
}

.recruit_area_select li:after {
  font-family: 'FontAwesome';
  content: "\f107";
  margin-left: .3rem;
  vertical-align: middle;
  line-height: 1rem;
  font-size: .8rem;
}


.recruit_area_select h3{
  font-size: 1em;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: normal;
}

h3.recruit_area{
  padding-bottom: .3em;
  border-bottom: 3px double #222324;
  font-size: 1.1rem;
  margin-top: 1rem
}

.recruit_list{
  border: solid 2px #222324;
  background: #222324;
  padding: 1em;
  font-size: 1rem;
  margin: 1rem auto;
  font-weight: 500;
  height: 81px;/*height: 121px;*/
  color: #fff;
}

/**/
.parent:hover > div {
  opacity: 0.8;
}
.parent:hover > div:hover {
  opacity: 1.0;
}

.recruit_list h4{
  font-size: 1rem;
  letter-spacing: .1em;
  color: #fff;
  line-height: 1.6;
}

.recruit_list h4:after{
  font-family: 'FontAwesome';
  content: "\f0da";
  margin-left: .3rem;
  vertical-align: middle;
  line-height: 1rem;
  font-size: .8rem;
}


.recruit_list p{
  font-size: .8rem;
  letter-spacing: normal;
  color: #fff
}

/* VOICE */

.voice {
  background: #fff;
  padding: 1rem;
  margin: 1rem 0 2rem;
}

.voice h2{
  font-size: 1.25em;
  letter-spacing: normal;
  padding:1em 1em 1.5em;
  text-align: center;
  border-bottom: solid 1px #666;
  margin-bottom: 1.5em;
}

.voice h3{
  font-size: 1.25em;
  letter-spacing: normal;
  padding:1em 1em 1.5em;
  text-align: center;
  margin-bottom: 1em;
}

.voice dt{
  margin-bottom: .5em;
}

.voice dd{
  margin-bottom: 1em;
}

/* salon saloninfo */

#recruit h2.salon_recruit {
  font-size: 1.5rem;
  padding-bottom: 0;
  display:inline;
}

#recruit p.right {
  margin-top: .5rem;
  text-align: right;
}

#recruit .recruit_tit{
  margin-bottom: 1.75rem;
  border-bottom: 1px solid #111;
}
.recruit_form{
  color: #fff;
  background: #111;
  padding: .5rem 0rem;
  margin: 1.5rem 0 .5rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}

#recruit table.saloninfo {
    padding:0px;
    margin:0px auto 10px;
    border-top:none;
  width: 98%;color:#444;
}
#recruit table.saloninfo tr {
    padding:0px;
    margin:0px;
    border-bottom:1px solid #ccc;}

#recruit table.saloninfo tr:last-child {
    padding:0px;
    margin:0px;
    border-bottom:none;}

#recruit table.saloninfo th {
    padding:10px 15px;
    margin:0px;
    vertical-align:middle;
    font-size: .75rem;
    width: 25%;
  }

#recruit table.saloninfo td {
    padding:10px 15px;
    margin:0px;}

table.saloninfo tr:hover { background-color:#f5f8f9;}

/* 表示領域が480px以下の場合 */
@media screen and (max-width: 480px) {

#recruit p.right {
  margin-top: 1rem;
  text-align: left;
}

#recruit table.saloninfo th {
    display:block;
    width:100%;}

#recruit table.saloninfo td {
    display:block;
    width:100%;}
}


/*----------------------------------
  Scroll To Section
------------------------------------*/
/* Scroll To Section v1 */
.s-scroll-to-section-v1--bc {
  position: absolute;
  left: 50%;
  bottom: 0.625rem;
  z-index: 1;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  text-align: center;
}



/*----------------------------------
  Header
------------------------------------*/

/* 背景色の更新/1 */
.s-header__navbar {
  background: transparent;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  background: #000;
}

/* Container
------------------------------ */
.s-header__container {
  width: 100%;
  height: auto;
  display: table;
  padding: 0rem 1.5rem;
}

.s-header__container:before, .s-header__container:after {
  content: " ";
  display: table;
}

.s-header__container:after {
  clear: both;
}

.container-fluid {
  padding-left: 2.1875rem;
  padding-right: 2.1875rem;
}

/* Navbar Row
------------------------------ */
.s-header__navbar-row {
  position: relative;
  display: table-row;
  clear: both;
}

.s-header__navbar-row-col3 {
  width: 33.3333%;
  display: table-cell;
  vertical-align: middle;
}

/* Logo
------------------------------ */
.s-header__logo {
  position: relative;
  z-index: 9999;
  width: 100%;
  height: auto;
  float: left;
  text-align: center;
}

.s-header__logo-link {
  display: inline-block;
  padding: 0rem 0;
}

.s-header__logo-link:focus, .s-header__logo-link:hover {
  text-decoration: none;
}

.s-header__logo-img-default, .s-header__logo-img-shrink {
  display: block;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__logo-img-default {
  opacity: 1;
}

.s-header__logo-img-shrink {
  position: absolute;
  top: 0rem;
  opacity: 0;
}

@media (max-width: 61.9em) {
  .s-header__logo {
    width: auto;
    height: auto;
    float: left;
  }
}

/* Trigger
------------------------------ */
.s-header__trigger {
  position: relative;
  z-index: 9999;
  width: 3.125rem;
  height: 3.125rem;
  float: left;
  overflow: hidden;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/* Trigger Icon */
.s-header__trigger-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  width: 1.375rem;
  height: 0.0625rem;
  background: #fff;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__trigger-icon:before, .s-header__trigger-icon:after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  content: " ";
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: transform 0.5s, width 0.5s, top 0.3s;
  transition: transform 0.5s, width 0.5s, top 0.3s;
}

.s-header__trigger-icon:before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: translate3d(0, 0.4375rem, 0);
  transform: translate3d(0, 0.4375rem, 0);
}

.s-header__trigger-icon:after {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: translate3d(0, -0.4375rem, 0);
  transform: translate3d(0, -0.4375rem, 0);
}

.s-header__trigger--dark .s-header__trigger-icon {
  background: #222324;
}

.s-header__trigger svg {
  position: absolute;
  top: 0;
  left: 0;
}

.s-header__trigger circle {
  -webkit-transition: stroke-dashoffset 0.4s 0s;
  transition: stroke-dashoffset 0.4s 0s;
}

/* Trigger Is Active Style */
.-is-active.s-header__trigger {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.-is-active .s-header__trigger-icon {
  background: #fff;
}

.-is-active .s-header__trigger-icon:before, .-is-active .s-header__trigger-icon:after {
  width: 50%;
  -webkit-transition: transform 0.5s, width 0.5s;
  transition: transform 0.5s, width 0.5s;
}

.-is-active .s-header__trigger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.-is-active .s-header__trigger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.-is-active.s-header__trigger circle {
  stroke-dashoffset: 0;
  -webkit-transition: stroke-dashoffset 0.4s 0.3s;
  transition: stroke-dashoffset 0.4s 0.3s;
}

/* Overlay
------------------------------ */
.s-header-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(34, 35, 36, 0);
  visibility: hidden;
  -webkit-transition: all 1s ease-in 0.4s;
  transition: all 1s ease-in 0.4s;
}

.s-header-bg-overlay.-is-open {
  background: rgba(34, 35, 36, 0.99);
  visibility: visible;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* Nav
------------------------------ */
.s-header__nav {
  height: 100%;
  padding: 7.5rem 0;
}

/* Menu List */
.s-header__nav-menu {
  width: 18.75rem;
  float: left;
  text-align: left;
  margin-bottom: 0;
}

@media (max-width: 47.9em) {
  .s-header__nav-menu {
    width: 50%;
  }
}

@media (max-width: 33.9em) {
  .s-header__nav {
  padding: 5rem 0;
}
  .s-header__nav-menu {
    width: 100%;
    float: none;
  }
}

.s-header__nav-menu-item {
  padding: 0 0 0 5.625rem;
  margin-bottom: .3125rem;
}

@media (max-width: 47.9em) {
  .s-header__nav-menu-item {
    padding-left: 0;
  }
}

.s-header__nav-menu-link {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 300;
  color: #fff;
  opacity: .85;
  padding: .3125rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__nav-menu-link-divider {
  position: relative;
}

.s-header__nav-menu-link-divider:before {
  position: absolute;
  top: 50%;
  right: -2.5rem;
  width: 2.1875rem;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0);
  content: " ";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__nav-menu-link-divider[href]:focus, .s-header__nav-menu-link-divider[href]:hover {
  color: #fff;
}

.s-header__nav-menu-link-divider[href]:hover:before {
  right: 0;
  background: white;
}

.s-header__nav-menu-link-divider:focus, .s-header__nav-menu-link-divider:hover {
  color: #fff;
}

.s-header__nav-menu-link-divider:hover {
  opacity: 1;
  padding-right: 2.5rem;
}

.s-header__nav-menu-link-divider.-is-active {
  padding-right: 2.5rem;
}

.s-header__nav-menu-link-divider.-is-active:before {
  right: 0;
  background: white;
}

/* Action
------------------------------ */
.s-header__action {
  margin-bottom: 0;
}

.s-header__action--lb {
  position: absolute;
  right: 1.875rem;/*left: 1.875rem;*/
  bottom: 1.875rem;
}

.s-header__action--rb {
  position: absolute;
  right: 1.875rem;/*left: 1.875rem;*/
  bottom: 1.875rem;
}

.s-header__action-item {
  padding: 0;
  margin-left: .1875rem;
  margin-right: .3125rem;
}

.s-header__action-link {
  position: relative;
  font-size: 1rem;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  padding: .3125rem;
}

.s-header__action-link:first-child {
  padding-left: 0;
}

.s-header__action-link:last-child {
  padding-right: 0;
}

.s-header__action-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.s-header__action-link.-is-active {
  color: white;
}

/* Menu Open/Close
------------------------------ */
.s-header-bg-overlay .s-header__nav-menu-item {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -webkit-transform: translate3d(0, 1.25rem, 0);
  transform: translate3d(0, 1.25rem, 0);
}

.s-header-bg-overlay .s-header__action-item {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

@media (max-width: 47.9em) {
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item,
  .s-header-bg-overlay.-is-open .s-header__action-item {
    opacity: 1;
  }
}

@media (min-width: 34em) {
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item {
    opacity: 1;
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(1) {
    -webkit-transition: all 0.4s 0.2s ease-out;
    transition: all 0.4s 0.2s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(2) {
    -webkit-transition: all 0.4s 0.4s ease-out;
    transition: all 0.4s 0.4s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(3) {
    -webkit-transition: all 0.4s 0.6s ease-out;
    transition: all 0.4s 0.6s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(4) {
    -webkit-transition: all 0.4s 0.8s ease-out;
    transition: all 0.4s 0.8s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(5) {
    -webkit-transition: all 0.4s 1s ease-out;
    transition: all 0.4s 1s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(6) {
    -webkit-transition: all 0.4s 1.2s ease-out;
    transition: all 0.4s 1.2s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(7) {
    -webkit-transition: all 0.4s 1.4s ease-out;
    transition: all 0.4s 1.4s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(8) {
    -webkit-transition: all 0.4s 1.6s ease-out;
    transition: all 0.4s 1.6s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(9) {
    -webkit-transition: all 0.4s 1.8s ease-out;
    transition: all 0.4s 1.8s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(10) {
    -webkit-transition: all 0.4s 2s ease-out;
    transition: all 0.4s 2s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__action-item {
    opacity: 1;
  }
  .s-header-bg-overlay.-is-open .s-header__action-item:nth-child(1) {
    -webkit-transition: all 0.4s 0.4s ease-out;
    transition: all 0.4s 0.4s ease-out;
  }
  .s-header-bg-overlay.-is-open .s-header__action-item:nth-child(2) {
    -webkit-transition: all 0.4s 0.8s ease-out;
    transition: all 0.4s 0.8s ease-out;
  }
  .s-header-bg-overlay.-is-open .s-header__action-item:nth-child(3) {
    -webkit-transition: all 0.4s 1.2s ease-out;
    transition: all 0.4s 1.2s ease-out;
  }
  .s-header-bg-overlay.-is-open .s-header__action-item:nth-child(4) {
    -webkit-transition: all 0.4s 1.6s ease-out;
    transition: all 0.4s 1.6s ease-out;
  }  
}

/* Shrink
------------------------------ */
/* Navbar */
.s-header__shrink .s-header__navbar {
  box-shadow: 0 0 0.9375rem 0 rgba(34, 35, 36, 0.05);
}

.s-header__shrink.-is-open .s-header__navbar {
  background: transparent;
}

/* Logo */
.s-header__shrink.-is-open .s-header__logo-img-default {
  opacity: 1;
}

.s-header__shrink.-is-open .s-header__logo-img-shrink {
  opacity: 0;
}

/* 背景色の更新/2 */
.s-header__shrink .s-header__navbar {
  background: #000;
}

.s-header__shrink .s-header__logo-img-default {
  opacity: 0;
}

.s-header__shrink .s-header__logo-img-shrink {
  opacity: 1;
}

/* Trigger Icon */
.s-header__shrink.-is-open .s-header__trigger-icon {
  background: #fff;
}

.s-header__shrink .s-header__trigger-icon {
  background: #fff/*222324*/;
}

.s-header__shrink .s-header__action-link {
  position: relative;
  font-size: 1rem;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  padding: .3125rem;
}

.s-header__shrink .s-header__action-link:first-child {
  padding-left: 0;
}

.s-header__shrink .s-header__action-link:last-child {
  padding-right: 0;
}

.s-header__shrink .s-header__action-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.s-header__shrink .s-header__action-link.-is-active {
  color: white;
}






/*----------------------------------
  Header v2
------------------------------------*/
/* Navbar
------------------------------ */
.s-header-v2__navbar {
  position: relative;
  z-index: 1000;
  min-height: 3.125rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.3);
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__navbar:before, .s-header-v2__navbar:after {
  content: " ";
  display: table;
}

.s-header-v2__navbar:after {
  clear: both;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar {
    background: #fff;
    box-shadow: 0 0 0.9375rem 0.25rem rgba(34, 35, 36, 0.05);
  }
}

/* Navbar Row
------------------------------ */
.s-header-v2__navbar-row {
  display: table-row;
  clear: both;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-row {
    display: inherit;
  }
}

/* Columns */
.s-header-v2__navbar-col {
  display: table-cell;
  vertical-align: middle;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-col {
    display: block;
  }
}

/* Space */
.s-header-v2__navbar-col-width--180 {
  width: 11.250rem;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-col-width--180 {
    width: auto;
  }
}

/* Variations */
@media (min-width: 62em) {
  .s-header-v2__navbar-col--left {
    float: left;
  }
  .s-header-v2__navbar-col--left .dropdown__mega-menu {
    right: auto;
    left: 10rem;
  }
}

@media (min-width: 62em) {
  .s-header-v2__navbar-col--right {
    float: right;
  }
}

/* Navbar Toggle
------------------------------ */
.s-header-v2__toggle {
  position: relative;
  display: none;
  float: right;
  background: transparent;
  border: none;
  outline: none;
  line-height: 4.3rem;
  padding: .5625rem .3125rem .5625rem .625rem;
  margin: 0;
}

.s-header-v2__toggle-icon-bar {
  position: relative;
  width: 1.315rem;
  height: 0.0625rem;
  display: inline-block;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__toggle-icon-bar, .s-header-v2__toggle-icon-bar:before, .s-header-v2__toggle-icon-bar:after {
  background: #222324;
}

.s-header-v2__toggle-icon-bar:before, .s-header-v2__toggle-icon-bar:after {
  position: absolute;
  left: 0;
  content: " ";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__toggle-icon-bar:before {
  width: 0.625rem;
  height: 0.0625rem;
  bottom: .625rem;
}

.s-header-v2__toggle-icon-bar:after {
  width: 1rem;
  height: 0.0625rem;
  top: -.3125rem;
}

.s-header-v2__toggle:hover .s-header-v2__toggle-icon-bar:before, .s-header-v2__toggle:hover .s-header-v2__toggle-icon-bar:after {
  width: 1.315rem;
  height: 0.0625rem;
}

@media (max-width: 61.9em) {
  .s-header-v2__toggle {
    display: block;
  }
}

/* Logo
------------------------------ */
.s-header-v2__logo {
  width: 100%;
  height: auto;
  float: left;
}

.s-header-v2__logo-link {
  display: inline-block;
  padding: 1rem 1.25rem 1rem 0;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__logo-link:focus, .s-header-v2__logo-link:hover {
  text-decoration: none;
}

.s-header-v2__logo-img {
  display: inline-block;
}

.s-header-v2__logo-img--default {
  display: block;
}

@media (max-width: 61.9em) {
  .s-header-v2__logo-img--default {
    display: none;
  }
}

.s-header-v2__logo-img--shrink {
  display: none;
}

@media (max-width: 61.9em) {
  .s-header-v2__logo-img--shrink {
    display: block;
  }
}

@media (max-width: 61.9em) {
  .s-header-v2__logo {
    width: auto;
    height: auto;
    float: left;
  }
  .s-header-v2__logo-link {
    padding-left: .875rem;
    padding-right: .625rem;
  }
}

/* Collapse
------------------------------ */
@media (max-width: 61.9em) {
  .s-header-v2__navbar-collapse {
    width: 100%;
    padding: 0 .9375rem !important;
  }
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-collapse.collapse {
    display: none !important;
  }
  .s-header-v2__navbar-collapse.collapse.in {
    display: block !important;
    max-height: 35rem;
    overflow-y: auto !important;
  }
}

/* Nav Menu
------------------------------ */
.s-header-v2__nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.s-header-v2__nav:before, .s-header-v2__nav:after {
  content: " ";
  display: table;
}

.s-header-v2__nav:after {
  clear: both;
}

@media (max-width: 61.9em) {
  .s-header-v2__nav {
    background: #fff;
    padding: 1.25rem 0;
  }
}

.s-header-v2__nav-item {
  position: relative;
  display: block;
  float: left;
}

.s-header-v2__nav-item:last-child .s-header-v2__nav-link {
  margin-right: 0;
}

@media (max-width: 61.9em) {
  .s-header-v2__nav-item {
    float: none;
  }
}

.s-header-v2__nav-item .dropdown-backdrop {
  position: relative;
}

.s-header-v2__nav-link {
  position: relative;
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  color: rgba(255, 255, 255, 0.75);
  line-height: 5.5rem;
  text-transform: uppercase;
  margin: 0 .9rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__nav-link:hover {
  color: #fff;
}

.s-header-v2__nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.s-header-v2__nav-link.-is-active {
  color: #fff;
}

@media (max-width: 61.9em) {
  .s-header-v2__nav-link {
    color: rgba(34, 35, 36, 0.7);
    line-height: 1.6;
    margin: 1.5rem 0;
  }
  .s-header-v2__nav-link:focus, .s-header-v2__nav-link:hover {
    color: rgba(34, 35, 36, 0.7);
  }
  .s-header-v2__nav-link.-is-active {
    color: #13b1cd;
  }
}

/* Dropdown
------------------------------ */
.s-header-v2__dropdown-menu {
  display: none;
  font-size: 0.8125rem;
  min-width: 13.750rem;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: 0 0.3125rem 0.75rem rgba(34, 35, 36, 0.05);
  padding: .9375rem 0;
  margin-top: 0;
}

@media (max-width: 61.9em) {
  .s-header-v2__dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
  }
}

.s-header-v2__dropdown-menu:focus .s-header-v2__dropdown-menu-link, .s-header-v2__dropdown-menu:hover .s-header-v2__dropdown-menu-link {
  background: transparent;
}

.s-header-v2__dropdown-menu-link {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
  color: rgba(34, 35, 36, 0.7) !important;
  padding: .4375rem 2rem .4375rem 1.375rem !important;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__dropdown-menu-link:hover {
  color: #13b1cd !important;
}

.s-header-v2__dropdown-menu-link.-is-active {
  color: #13b1cd !important;
}

/* Dropdown Menu Open On Hover
------------------------------ */
@media (min-width: 62em) {
  .s-header-v2__dropdown-on-hover:hover > .s-header-v2__dropdown-menu {
    display: block;
  }
}

/* Shrink
------------------------------ */
@media (min-width: 62em) {
  .s-header__shrink .s-header-v2__navbar {
    background: #fff;
    box-shadow: 0 0 0.9375rem 0.25rem rgba(34, 35, 36, 0.05);
  }
  /* Toggle */
  .s-header__shrink .s-header-v2__toggle-icon-bar--white, .s-header__shrink .s-header-v2__toggle-icon-bar--white:before, .s-header__shrink .s-header-v2__toggle-icon-bar--white:after {
    background: #222324;
  }
  /* Logo */
  .s-header__shrink .s-header-v2__logo-img--default {
    display: none;
  }
  .s-header__shrink .s-header-v2__logo-img--shrink {
    display: block;
  }
  /* Nav Link */
  .s-header__shrink .s-header-v2__nav-link {
    color: rgba(34, 35, 36, 0.7);
  }
  .s-header__shrink .s-header-v2__nav-link:hover {
    color: #13b1cd;
  }
  .s-header__shrink .s-header-v2__nav-link:focus {
    color: rgba(34, 35, 36, 0.7);
  }
  .s-header__shrink .s-header-v2__nav-link.-is-active {
    color: #13b1cd;
  }
}

/*----------------------------------
  Footer
------------------------------------*/

.footer_line{border-top: #222324 solid 1px;}

.s-footer__logo {
  position: relative;
  z-index: 1;
}

.s-footer__logo:before {
  position: absolute;
  top: 0;
  left: 0.9375rem;
  bottom: 0;
  width: 70%;
  height: auto;
  z-index: -1;
  background: url("../img/widgets/worldmap.png") no-repeat center center;
  background-size: cover;
  content: " ";
}

/*----------------------------------
  Back To Top
------------------------------------*/
.s-back-to-top {
  position: fixed;
  right: 3.125rem;
  bottom: -3.125rem;
  display: block;
  width: 1.875rem;
  height: 3rem;
  z-index: 9;
  background: #13b1cd;
  border-radius: 3.125rem;
  text-align: center;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-back-to-top:before {
  display: block;
  font-size: 0.75rem;
  font-style: normal;
  font-family: themify;
  color: #fff;
  line-height: 3rem;
  content: "\e627";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-back-to-top:hover {
  background: #fff;
}

.s-back-to-top:hover:before {
  color: #13b1cd;
}

.s-back-to-top:focus, .s-back-to-top:hover {
  text-decoration: none;
}

/* The button becomes visible */
.s-back-to-top.-is-visible {
  bottom: 3.125rem;
  opacity: .8;
}

.s-back-to-top.-is-visible:hover {
  opacity: 1;
}

/* If the user keeps scrolling down, the button is out of focus and becomes less visible */
.s-back-to-top.-zoom-out {
  opacity: .6;
}



/* Image Effect
------------------------------ */
.s-portfolio__img-effect {
  position: relative;
  display: block;
}

.s-portfolio__img-effect:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 177, 205, 0.5);
  content: " ";
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__item:hover .s-portfolio__img-effect:after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Image Effect  Oscar
------------------------------ */
.grid {
  position: relative;
  margin: 0 auto;
  padding: 0;
  max-width: 1000px;
  list-style: none;
  text-align: center;
}


/* Common style */
.grid figure {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /*float: left;
  margin: 0;
  background: #3085a3;
  text-align: center;*/
}

.grid figure img {
  position: relative;
  display: block;
  /*min-height: 100%;
  max-width: 100%;*/
  opacity: 1;
}

.grid figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
  pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.grid figure figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 1;
}

.grid figure h2 {
  word-spacing: -0.15em;
  font-weight: 300;
}

.grid figure h2 span {
  font-size: .7em;
  line-height: 1em;
}

.grid figure h2,{
  margin: 0;
}

/*---------------*/
/***** Oscar *****/
/*---------------*/

figure.effect-oscar {
  background: #fff;
}

figure.effect-oscar img {
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

figure.effect-oscar figcaption {
  padding: 3em;
  -webkit-transition: background-color 0.35s;
  transition: background-color 0.35s;
}

figure.effect-oscar figcaption::before {
  position: absolute;
  top: 1em/*30px*/;
  right: 1em/*30px*/;
  bottom: 1em/*30px*/;
  left: 1em/*30px*/;
  border: 1px solid #111/*#fff*/;
  content: '';
  background-image: linear-gradient(-45deg, #111 10px, transparent 0);
}

figure.effect-oscar figcaption::before,
figure.effect-oscar h2{
  margin: 10% ;/**/
  opacity: 1;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0);
  transform: scale(0);
  padding: 33% 0;
}

figure.effect-oscar:hover h2 {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

figure.effect-oscar:hover figcaption::before,
figure.effect-oscar:hover p {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

figure.effect-oscar:hover figcaption {
  background-color: rgba(255,255,255,0.5);
}

figure.effect-oscar:hover img {
  opacity: 1;
}

/*---------------*/
/***** Oscar_mini *****/
/*---------------*/

figure.effect-oscar_mini {
  background: #fff;
}

figure.effect-oscar_mini img {
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

figure.effect-oscar_mini figcaption {
  padding: 3em;
  -webkit-transition: background-color 0.35s;
  transition: background-color 0.35s;
}

figure.effect-oscar_mini figcaption::before {
  position: absolute;
  top: 1em/*30px*/;
  right: 1em/*30px*/;
  bottom: 1em/*30px*/;
  left: 1em/*30px*/;
  border: 1px solid #111/*#fff*/;
  content: '';
  background-image: linear-gradient(-45deg, #111 10px, transparent 0);
}

figure.effect-oscar_mini figcaption::before,
figure.effect-oscar_mini h2{
  margin: 0 0 0;
  opacity: 1;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

figure.effect-oscar_mini:hover h2 {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

figure.effect-oscar_mini:hover figcaption::before,
figure.effect-oscar_mini:hover p {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

figure.effect-oscar_mini:hover figcaption {
  background-color: rgba(255,255,255,0.5);
}

figure.effect-oscar_mini:hover img {
  opacity: 1;
}



/* Position
------------------------------ */
.s-portfolio__caption-hover--cc {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  /*padding: 1.875rem;*/
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__item:hover .s-portfolio__caption-hover--cc {
  opacity: 1;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

/* Paginations v1
------------------------------ */
.s-portfolio__paginations-v1 .cbp-nav-controls {
  display: none;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination {
  padding-left: .625rem;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination-item {
  margin: 0 .9375rem;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination-active {
  background: #13b1cd;
}

/* Tab v1
------------------------------ */
.s-tab__filter-v1 {
  display: block;
  font-size: 1.75rem;
  color: #fff;
  text-align: center;
  border: none;
  cursor: pointer;
  letter-spacing: .0625rem;
  line-height: 2rem;
  padding: 0 0 2rem;
  margin: 0 0 2rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-tab__filter-v1:before {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 5rem;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.3);
  content: " ";
  margin-left: -2.5rem;
}

.s-tab__filter-v1:last-child {
  padding: 0;
  margin: 0;
}

.s-tab__filter-v1:last-child:before {
  display: none;
}

.s-tab__filter-v1.cbp-filter-item-active {
  color: #13b1cd;
}

.s-tab__grid-v1-item {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #656565;
}

/*----------------------------------
  Swiper
------------------------------------*/
.s-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}


/* --------------------------
共通　アニメーション
-------------------------- */
.animate-box {
  opacity: 0;
}

/*----------------------------------
<404>
------------------------------------*/
.bg-404 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  font-size: 1rem;
}

.mt_2rem{
  margin-top: 2rem;
}

.mt_15rem{
  margin-top: 1.5rem;
}

.mb_4rem {
 margin-bottom: -4rem;
}