* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    line-height: 2.0;
/*    outline: 2px solid red;*/
}

.tenor-sans-regular {
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

html {
    scroll-behavior: smooth;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-right: solid 1px #E5E5E5;
    border-left: solid 1px #E5E5E5;
}

@media (max-width: 768px) {
  .wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    }
}

#logo {
    display: block;
    margin-left: 50px;
}

#logo img {
    width: 120px;
}

@media (max-width: 768px) {
  #logo {
    display: block;
    margin: 0 auto;
	}
    #logo img {
        width: 110px;
    }
}

@media (max-width: 768px) {
  .reservation {
    display: none;
	}
}

#fixed-header-box {
  position: fixed;
  top: -70px;  
  width: 100%;
  height: 70px;
  text-align: center;
  background: white;
  box-sizing: border-box;
  transition: .5s; /* アニメーションタイミング */
  z-index: 100;
  opacity: 0.95;
  display: flex;
  justify-content: center;
}
#fixed-header-box.is-show {
  top: 0;
    border-bottom: solid 1px #E5E5E5;
}
#fixed-header {
    width: 100%;
	max-width: 1200px;
	margin: 0 auto;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    border-right: solid 1px #E5E5E5;
    border-left: solid 1px #E5E5E5;
}
#fh-box {
    width: 100%;
	max-width: 1200px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-right: solid 1px #E5E5E5;
    border-left: solid 1px #E5E5E5;
}
#fixed-header-menu {
	display: block;
    width: 600px;
    outline: solid 1px orange;
    box-sizing: border-box;
}
#fixed-header-menu li {
	display: inline-block;
    line-height: 70px;
    font-size: 0.9rem;
    margin-left: 30px;
    font-family: 'EB Garamond', serif;
}
#fixed-header-hamburger-menu {
  display: none;
}
#fixed-header-logo {
	width: 80px;
}

#fixed-header-logo img {
	width: 80px;
    margin-left: 80px;
}

@media (max-width: 768px) {
	#fixed-header {
	  position: fixed;
	  top: -70px;  
	  width: 100%;
	  height: 70px;
	  text-align: center;
	  background: white;
	  box-sizing: border-box;
	  transition: .5s; /* アニメーションタイミング */
	  border-bottom: solid 1px #E5E5E5;
	  z-index: 100;
	}
	#fixed-header.is-show {
	  top: 0;
	}
    #fixed-header-box {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    #fixed-header-logo {
        width: 100px;
    }
    #fixed-header-logo img {
        width: 80px;
        margin-left: 45px;
    }
	#fixed-header-menu {
	  display: none;
    }
	#fixed-header-hamburger-menu {
	  display: block;
    }
}

/* ハンバーガーメニュー */
.header {
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.logo {
  font-weight: 700;
  padding-left: 14px;
}
.hamburger-menu {
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
  margin-right: 30px;
}
.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}
.hamburger-menu__bar:first-child {
  top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 24px;
}
.hamburger-menu__bar:last-child {
  top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
.navigation {
  display: none;
  background: #FFFFFF;
  position: absolute;
  top: 70px;
  width: 100%;
  z-index: 9999;
}
.navigation__list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navigation__list-item {
}
.navigation__list-item:first-child {
}
.navigation__list-item:last-child {
  border-bottom: solid 1px #E5E5E5;
}
.navigation__link {
  color: #000000;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 12px 0;
  transition: .5s;
}
@media (hover: hover) and (pointer: fine) {
  .navigation__link:hover {
    background: #F8F8F8;
  }
}

@media (max-width: 768px) {
    .navigation__link {
      font-size: 18px;
    } 
}

    #gloval-menu-sp {
        display: none; 
    }

    @media (max-width: 768px) {
      #gloval-menu {
          display: none;
        }    
      #gloval-menu-sp {
          display: block;
        }
      #gloval-menu-sp ul {
          display:block
        }
      #gloval-menu-sp li {
          text-align: center;
        }
    }

    .main-title {
        margin: 50px 0 0 30px;
    }
    #header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 auto;
        padding: 0 4%;
        height: 170px;
    }

    @media (max-width: 768px) {
        #header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 0 auto;
            padding: 0 4%;
            height: 110px;
        }
}

#header ul {
    display: flex;
    justify-content: end;
    padding: 10px;
    align-items: center;
}
#header ul li {
    font-size: 0.9rem;
    margin-left: 30px;
    font-family: 'EB Garamond', serif;
}
#header ul li a {
    color: #24292e;
    transition: all 0.3s;
}
#header ul li a:hover {
    opacity: 0.5;
}

hr.hrstyle {
    color: #E5E5E5;
    /*親要素の幅を超えた画面幅での表示設定*/
    margin: 0 calc(50% - 50vw);
    width: 100vw;
}

hr.hrstyle-sub {
    color: #E5E5E5;
    margin: 50px auto 20px auto;
    max-width: 500px;
}
.reservation {
    font-size: 1.2rem;
}
#top-img-box {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}
        
#top-img-box img {
    width: 100%;
    min-height: 400px;
    object-fit: cover;
    opacity: 0;
    margin: 50px auto;
}
#top-img-box img.active {
    opacity: 1;
    /* 1.5秒かけて実行するアニメーション */
    animation: img-scale 1.5s;
    transition: transform 0.5s;
}
@media (max-width: 768px) {
    #top-img-box img {
        margin: 20px auto;
    }
}
/* ホバー時のアニメーション */
/*#top-img img.active:hover {
  transform: scale(1.1);
}*/
@keyframes img-scale {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
    }
}
section {
    /*    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 100px;
    color: #000;*/
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 50px auto;
}
.main-title {
    font-size: 4rem;
    margin-bottom: 50px;
}
.content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-box-bottom {
    z-index: 20;
    background: rgba(230, 230, 230, 0.3);
    backdrop-filter: blur(20px);
    padding: 40px;
}

/* section01 /CONCEPT/ ---------------------------------------------------- */
.sec-01 {
    position: relative;
    height: 600px; /*高さ自動取得できるように修正必要*/
}
.sec-01-sp {
    display: none;
}

.sec-01 .image-box {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 600px;
    height: 480px;
    overflow: hidden;
    /*    transform: translate(50px, -80px);*/
}
.sec-01 .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 10;
    /*    transform: translate(50px, 0px);*/
}
.sec-01 .text-box {
    position: absolute;
    top: 70px;
    left: 550px;
    width: 600px;
    height: 480px;
    overflow: hidden;
    z-index: 20;
    /*    transform: translate(50px, -80px);*/
}
.sec-01 .text-box-top {
    max-width: 600px;
    /*    transform: translate(-50px, 0px);*/
}
.sec-01 .text-box-bottom {
    padding: 40px;
    max-width: 600px;
    /*    transform: translate(-50px, 0px);*/
}

/* SP sec-01/ ---------------------------------------------------- */
@media (max-width: 768px) {
  .sec-01 {
        display: none;
	}
  .sec-01-sp {
        display: block;
    }
  .content {
        width: 100%;
        display: block;
        justify-content: center;    
    }
  .image-box {
        text-align: center;
    }
  .image-box img {
      width: 90%;
    }
  .sec-01-sp .text-box-top {
      margin-top: 40px;
    }
  .sec-01-sp .text-box-bottom {
        padding: 40px;
/*        max-width: 600px;*/
    /*    transform: translate(-50px, 0px);*/
    }
  .text-box {
        margin-top: 50px;
    }
  .text-box-bottom {
        background: rgba(0, 0, 0, 0);
        backdrop-filter: blur(20px);
        padding: 0px;
    }
}

/* section02 /SALON/ ---------------------------------------------------- */
.sec-02 {
    position: relative;
    height: 650px; /*高さ自動取得できるように修正必要*/
}

.sec-02-sp {
    display: none;
}

.sec-02 .image-box1 {
    position: absolute;
    top: 50px;
    left: 600px;
    width: 550px;
    height: 360px;
    overflow: hidden;
}

.image-box1-sp {
    text-align: center;
}

.sec-02 .image-box1 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 10;
    /*    transform: translate(50px, 0px);*/
}
.sec-02 .image-box2 {
    position: absolute;
    top: 380px;
    left: 530px;
    width: 330px;
    height: 220px;
    overflow: hidden;
}

.sec-02 .image-box2 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 30;
    /*    transform: translate(50px, 0px);*/
}
.sec-02 .text-box {
    position: absolute;
    top: 70px;
    left: 50px;
    width: 500px;
    overflow: hidden;
    z-index: -10;
    /*    transform: translate(50px, -80px);*/
}
.sec-02 .text-box-top {
    z-index: 20;
    max-width: 600px;
    /*    transform: translate(-50px, 0px);*/
}
.sec-02 .text-box-bottom {
    padding: 40px;
    max-width: 600px;
    /*    transform: translate(-50px, 0px);*/
}

/* SP sec-02/ ---------------------------------------------------- */
@media (max-width: 768px) {
  .sec-02 {
        display: none;
	}
  .sec-02-sp {
        display: block;
    }
  .sec-02-sp .text-box-top {
      margin-top: 40px;
    }
  .content {
        width: 100%;
        display: block;
        justify-content: center;    
    }
  .image-box1 {
        text-align: center;
    }
  .image-box1 img {
      width: 90%;
    }
  .image-box2 {
        display: none;
    }
  .sec-02-sp .text-box-bottom {
        padding: 40px;
    }
  .text-box {
        margin-top: 50px;
    }
  .text-box-bottom {
        background: rgba(0, 0, 0, 0);
        backdrop-filter: blur(20px);
        padding: 0px;
    }
  .sec-02-sp .image-box2-sp {
        display: none;
	}
}

/* section03 /Our Service/ ---------------------------------------------------- */
.sec-03 {
    margin-bottom: 100px;
}
.sec-03 .content-title-box {
    align-items: center;
    margin: 50px auto;
}
.sec-03 .service-box {
    display: flex;
    border-top: solid 1px #E5E5E5;
    border-bottom: solid 1px #E5E5E5;
    max-width: 900px;
    padding: 10px;
    margin-bottom: 20px;
}
.sec-03 .service-img img {
    width: 220px;
}
.sec-03 .service-text {
    padding: 20px 50px;
}
.sec-03 .service-main {
    font-size: 24px;
    margin-bottom: 10px;
}

/* SP sec-03/ ---------------------------------------------------- */
@media (max-width: 768px) {
  .sec-03 {
        margin-bottom: 50px;
  }
  .sec-03 .service-box {
        display: block;
        border-bottom: none;
	}
  .sec-03 .service-box .service-img {
      text-align: center;
	}
  .sec-03 .service-box .service-text {
      text-align: center;
	}
}

/* section04 /Style/ ---------------------------------------------------- */
.sec-04 {
    display: block;
    margin-bottom: 100px;
}
.sec-04-sp {
    display: none;
    margin-bottom: 50px;
}
.sec-04 .content-title-box {
    align-items: center;
    margin: 50px auto;
}
.sec-04-sp .content-title-box {
    align-items: center;
    margin: 50px auto;
}
.sec-04 .container {

}
.style-img1 {

}
.style-img2 {
    margin-left: 30px;
}
.style-img3 {
    margin-left: 30px;
}
.style-img4 {
    margin-left: 30px;
}
.style-img1 img {
    width: 200px;
}
.style-img2 img {
    width: 200px;
}
.style-img3 img {
    width: 200px;
}
.style-img4 img {
    width: 200px;
}
.link-box {
    margin: 100px auto;
}
/* SP sec-04/ ---------------------------------------------------- */
@media (max-width: 768px) {
  .sec-04 {
      display: none;
  }
  .sec-04-sp {
      display: block;
  }
  .style-sp-imgbox {
      width: 100%;
      overflow: hidden;
  }
  .style-sp-imgbox ul{
      display: flex;
  }
  .style-sp-img{
      width: 100%;
  }
  .style-img1 {

  }
  .style-img2 {
      margin-left: 0px;
  }
  .style-img3 {
      margin-left: 0px;
  }
  .style-img4 {
      margin-left: 0px;
  }
  .style-img1 img {
    width: 20%;
  }
  .style-img2 img {
    width: 20%;
  }
  .style-img3 img {
    width: 20%;
  }
  .style-img4 img {
    width: 20%;
  }
  .link-box {
    margin: 80px auto;
  }
}

/* section05 /Menu & Price/ ---------------------------------------------------- */
.sec-05 {
    display: block;
}
.sec-05 .content-title-box {
    align-items: center;
    margin: 50px auto;
}
.sec-05 .content {
    display: flex;
    flex-direction: column;
}
.sec-05 .menu-box {
    display: flex;
    align-items: center;
    border-top: solid 1px #E5E5E5;
    padding: 20px 100px;
    margin-bottom: 0px;
    width: 600px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.sec-05 .menu-box-last {
    border-top: solid 1px #E5E5E5;
    border-bottom: solid 1px #E5E5E5;
}
.sec-05 .menu-box:hover {
    background-color: #F8F8F8;
}
.sec-05 .menu-main {
    display: block;
    font-size: 20px;
    margin-right: 40px;
	width: 70px;
}
.sec-05 .menu-sub {
    display: block;
    font-size: 14px;
}
/*矢印*/
.yazirusi {
    position: relative;
    width: 100px;
    margin: 30px 0px 30px auto;
}
.line01 {
    height: 1px;
    background-color: #000;
}
.line02 {
    position: absolute;
    top: 0;
    right: 0;
    transform-origin: right bottom;
    width: 20px;
    height: 1px;
    background-color: #000;
    transform: rotate(-30deg);
}

/* SP sec-05/ ---------------------------------------------------- */
@media (max-width: 768px) {
  .sec-05 .menu-box {
    width: 95%;
  }
}
    
/* section06 /Reservation/ ---------------------------------------------------- */
.sec-06 {
    text-align: center;
}
.sec-06 .content-title-box {
    align-items: center;
    margin: 50px auto;
}

.sec-06 .content {
    display: flex;
    flex-direction: column;
}
.sec-06 .menu-box {
    text-align: center;
    margin: 0px auto;
    padding: 5px;
}
.sec-06 .reserve-box {
    border: solid 1px #E5E5E5;
    text-align: center;
    width: 250px;
    margin: 30px auto;
    padding: 5px;
    font-size: 20px;
    font-weight: bold;
}

/* section07 /Access/ ---------------------------------------------------- */
.sec-07 {
    text-align: center;
}
.sec-07 .content-title-box {
    align-items: center;
    margin: 50px auto;
}

.address {
    margin: 30px 0px;
}
/*Google Map*/
.googleMap {
    margin-bottom: 48px;
    position: relative;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 480px;
    iframe {
        filter: grayscale(1);
    }
}


/* Footer/ ---------------------------------------------------- */
.sec-footer {
    text-align: center;
}

.footer-box {
    background-color: #292929;
    color:#FFFFFF;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
}

.footer-inbox {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.footer-sec {
    width: 33.3%;
    padding: 20px;
    text-align: left;
}

.footer-sec-title {
    border-bottom: solid 1px #666666;
    padding: 10px;
    margin: 20px auto;
}

.footer-sec-contents {
    padding: 10px;
    margin: 20px auto;
}

@media (max-width: 768px) {
  .footer-inbox {
    display: block;
      
  }
  .footer-sec {
    width: 100%;
    text-align: center;
  }
    .footer-sec-title {
        border-top: solid 1px #666666;
        border-bottom: solid 1px #666666;
        padding: 10px;
        margin: 20px auto;
    }
}

.flex-container {
    display: flex;
    flex-wrap: wrap;　/* 複数行に折り返す */
    text-align: center;
    background-color: #eddcbc;
    line-height: 200px;
}

.flex-item {
    width: calc((100% - 10%) / 3);
    height: auto;
    margin-right: 5%;
    margin-bottom: 30px;
    font-size: 48px;
    color: #fff;
    background-color: #ff9933;
}

.flex-item:nth-child(3n) {
    margin-right: 0;
}

.flex-item:nth-last-child(-n+3) {
    margin-bottom: 0;
}



.box {
    border: solid 1px;
    text-align: center;
    width: 250px;
    margin: 0 auto;
    padding: 5px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.box:hover {
    background-color: #F8F8F8;
}
.content .text-box h3 {
    margin-bottom: 20px;
}
.content-title {
    display: flex;
    justify-content: center;
    font-family: 'EB Garamond', serif;
    font-size: 2rem;
    margin-bottom: 5px;
}
.content-title-sub {
    display: flex;
    justify-content: center;
    font-family: 'EB Garamond', serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.partition{
    width: 20px;
    margin: 0 auto;
}
.media-icons {
    margin-top: 100px;
}
.media-icons a {
    color: #fff;
    font-size: 2em;
    margin: 60px;
}
.section-title {
    font-size: 3em;
    margin-bottom: 80px;
}
.info-title {
    font-size: 1.8em;
    margin-bottom: 10px;
}
.info {
    width: 700px;
    margin-left: 50px;
}
.media-info {
    width: 400px;
    margin-left: 50px;
}
.media-info li {
    list-style: none;
    font-size: 1.4em;
}
.media-info li a {
    text-decoration: none;
    color: #fff;
}
.media-info li:not(:last-child) {
    margin-bottom: 50px;
}
.media-info li:nth-child(1), .media-info li:nth-child(5) {
    padding-left: 100px;
}
.media-info li:nth-child(2), .media-info li:nth-child(4) {
    padding-left: 50px;
}
/*画像反転*/
.inversion {
    transform: scale(-1, 1);
}
.copyright {
    text-align: center;
    margin: 10px;
    border: none;
}

/* Menu & Price/ ---------------------------------------------------- */
.sec_price {
	padding: 100px 15%;
/*	outline: solid 1px red;*/
}

.menu_wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}

.menu_col_head {
	min-width: 220px;
	padding: 10px;
	font-size: 18px;
/*	outline: solid 1px red;*/
}

.menu_col_body {
	width: 100%;
	padding: 10px;
/*	outline: solid 1px red;*/
}

.menu_col_body dl{
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
/*	outline: solid 1px red;*/
}

.menu_col_body dt{
    position:relative;
	width: 100%;
/*	outline: solid 1px green;*/
}
.menu_col_body dd{
	min-width: 80px;
	margin-left: 10px;
	text-align: right;
/*	outline: solid 1px blue;*/
}

.line {
display: flex;
align-items: center;
}
.line::after {
content: "";
height:1px;
flex-grow: 1;
background-color:#E5E5E5;
}
.line:after {
margin-left: 50px;
}
.menu_sub {
	font-size: small;
}
.image-box {
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}
.ti1 {
	text-indent: 1rem;
}
.eyelash_info {
	background-color: #ECECEC;
	border-radius: 10px;
	padding: 20px;
    text-align: center;
}
.price_off {
	display: inline;
	margin: 0 5px;
	color: #D94042;
	font-weight: bold;
}

@media (max-width: 768px) {
	.sec_price {
		padding: 100px 20px;
	}
	.menu_wrap {
		display: block;
		margin-bottom: 50px;
	}
	.menu_col_head {
		min-width: 180px;
		padding: 10px;
		text-align: center;
		font-size: 20px;
	}
}

/* Style/ ---------------------------------------------------- */
.sec_style {
	padding: 100px 20px;
/*	outline: solid 1px red;*/
}

.grid_wrap {
  width: 100%;
  margin: 0 auto;
}

.demo01 {
  margin: 0 auto;
}

.item {
  width: 180px;
  padding: 10px;
}

.item img {
  width: 100%;
}

@media (max-width: 768px) {
    .sec_style {
        padding: 100px 0px;
    }
    .grid_wrap {
      width: 100%;
      margin: 0 auto;
    }
	.item {
	  width: 180px;
	  padding: 10px;
	}
}

/* Access/ ---------------------------------------------------- */
.sec_access {
	padding: 100px 50px;
    text-align: center;
/*	outline: solid 1px red;*/
}

@media (max-width: 768px) {
    .sec_access {
        padding: 100px 0px;
        text-align: center;
    }
}

/* Staff/ ---------------------------------------------------- */
.sec_staff {
	padding-top: 100px;
}

.staff_wrapp {
    list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.staff {
	width: 250px;
/*	min-width: 165px;*/
	text-align: center;
	padding: 20px;
/*	outline: solid 1px red;*/
}
.staff_image {
	margin: 0px;
}

.staff_image img {
	width: 100%;
	max-width: 164px;
}

.staff_name {
	padding: 20px 0px 5px 0px;
	font-size: 18px;
}

.staff_namekana {
	padding: 0px;
	font-size:small;
}

.staff_position {
	padding: 5px 0px 0px 0px;
	font-size: 16px;
}

.staff_wh {
	padding: 0px 0px 5px 0px;
	font-size: 12px;
}

.staff_text {
	display: inline-block;
	text-align: left;
	padding: 10px 10px;
	font-size: 12px;
}

.design {
	min-height:200px;
}

@media (max-width: 768px) {
	.staff {
		width: 50%;
		min-width: 165px;
		text-align: center;
	}
}
/* Recruite/ ---------------------------------------------------- */
.sec_recruite {
	padding: 100px 10%;
/*    text-align: center;*/
/*	outline: solid 1px red;*/
}
#recruit-head{
	margin-bottom:20px;
	border-bottom:1px solid #000000;
	font-size:18px;
	color:#FF0004;
}

#recruit-caption{
	margin-bottom:20px;
	line-height:2.0;
}
.recruit-text {
    margin: 0 0 50px 0;
}
.recruit-table{
	width: 100%;
	border-collapse: collapse;
	margin-bottom:20px;
}

.recruit-table th{
width: 25%;
padding: 10px;
text-align: center;
vertical-align: top;
color: #333;
background-color: #eee;
border: 1px solid #b9b9b9;
}

.recruit-table td{
	padding: 10px 20px;
/*	text-align: center;*/
	background-color: #fff;
	border: 1px solid #b9b9b9;
}

@media (max-width: 768px) {
	.sec_recruite {
		padding: 100px 30px;
	/*    text-align: center;*/
	/*	outline: solid 1px red;*/
	}
}
/* ---------------------------------------------------- */
.mt50 {
	margin-top: 50px;
}
.mt100 {
	margin-top: 100px;
}
.mb50 {
	margin-bottom: 50px;
}