@font-face {
  font-family: 'myfont';
  src: url('./font/GeosansLight.ttf') format('truetype'),
       url('https://fonts.googleapis.com/css2?family=Barlow:wght@300&display=swap');
}
* {
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
  font-family: 'myfont';
  color: #282b2e;
}
p {
  font-size: 14px;
  line-height: 2rem;
}
.en {
  font-size: 18px;
}
a {
  color: #282b2e;
}
a :hover{
  color: #29d2f0;
}
h2 {
  font-size: 30px;
  letter-spacing: .1rem;
}
h3 {
  font-size: 24px;
  margin-bottom: 30px;
}
h5 {
  font-size: 22px;
  letter-spacing: .1rem;
}
.other {
  max-width: 1200px;
  margin: 0 auto;
}
.offset:before {
  display:block;
  content: "";
}
.row  {
  padding-left: 40px;
  padding-right: 40px;
}
.heading {
  margin-bottom: 25px;
  text-align: left!important;
}
.heading-underline {
  width: 15rem;
  height: .1rem;
  background-color: #29d2f0;
}

/* navigation */
.navbar {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .1rem;
  opacity: 0.7;
}
.navbar-brand img {
  height: 3rem;
}
.navbar-nav li {
  padding-right: 5px;
}
.navbar-dark .navbar-nav .nav-link {
  color: white;
  padding-top: .8rem;
}
.navbar-dark .navbar-nav .nav-link.active, 
.navbar-dark .navbar-nav .nav-link:hover {
  color: #29d2f0;
}
.bg-slider {
	width: 100vw;
  height: 100vh;
	background-position: right center;
  background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}
.caption {
  width: 195px;
  max-width: 100%;
  position: absolute;
  top: 50%;
  z-index: 1;
}

/* salon */
#salon img {
  width: 100%;
  margin-bottom: 80px;
}
.salon, .gallery, .access, .recruit, .news {
  padding-top: 80px;
  padding-bottom: 100px;
}
.concept {
  margin-bottom: 80px;
}
.product img{
  margin-bottom: 0!important;
}
.message {
  padding: 0 30px 0 0;
}/* end salon */

/* info */
.news {
  margin-bottom: 80px;
}
.inline_box {
  width: 100%;
  height: 600px;
  overflow: auto;
  background: #eeeeee;
  }

.instagram-gallery {
  width: 100%;
  padding: 20px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-around;
}
.instagram-gallery__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
}
.instagram-gallery__wrap {
  width: 100%;
  background-color: #ffffff;
  grid-column: 6 span;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 15px;
}
.instagram-gallery__item {
  grid-column: 6 span;
  padding: 5px;
}
.instagram-gallery__item img {
  width: 100%;
}
.instagram-gallery__caption {
  grid-column: 6 span;
  height: 100%;
}
.instagram-gallery__date {
  padding: 15px 10px;
  border-bottom: 1px solid #cccccc;
}
.instagram-gallery__date h5 {
  font-size: 22px;
}

.instagram-gallery__text {
  grid-row: 4 span;
  padding: 15px;
}
.instagram-gallery__text p {
  font-size: 12px;
  line-height: 1.5rem;
}
.instagram-gallery__link {
  grid-row: 1 span;
  text-align: right;
  padding-right: 30px;
  padding-bottom: 15px;
}
.instagram-gallery__link a {
  font-size: 20px;
}
/* end info */

/* menu */
.fixed-background {
  background-color: rgba(0, 0, 0, 0.7);
  padding-top: 80px;
  padding-bottom: 100px;
}
.menu {
  color: white;
  text-align: center;
}
.menuItem img{
  width: 150px;
}
.menuText {
  text-align: left;
  font-size: 12px;
}
hr.menu-hr {
  border-top: .1rem solid #666b71;
}
blockquote {
  font-family: 'myfont';
  font-size: 0.8rem;
  line-height: 1.8em;
}
table {
  width: 80%;
  margin: 20px auto;
}
tr {
  height: 50px;
  width: 100%;
}

.name {
  font-size: 0.8rem;
  text-align: left;
}
.price {
  font-size: 1.1rem;
  text-align: left;
}
.fixed {
  background-image: url(img/menu.png);
}

/* menu-accordion */
.cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	color: #ffffff;
}
.cp_actab input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.cp_actab label {
  font-size: 18px;
  letter-spacing: .1rem;
	line-height: 3;
	position: relative;
	display: block;
	padding: 0 0 0 1em;
	cursor: pointer;
	margin: 0 0 1px 0;
  border: .1rem solid #666b71;
}
.cp_actab .cp_actab-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.5s;
	transition: max-height 0.5s;
	color: #dbdbdb;
	background: #666b7170;
}

/* :checked */
.cp_actab input:checked ~ .cp_actab-content {
	max-height: 25em;
}
/* Icon */
.cp_actab label::after {
	line-height: 3;
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 3em;
	height: 3em;
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
	text-align: center;
}
.cp_actab input[type=checkbox] + label::after {
	content: '＋';
}
.cp_actab input[type=checkbox]:checked + label::after {
	transform: rotate(315deg);
}
/* end menu-accordion */

/* blog */
.blog-image img{
  width: 100%;
}
.blog-btn {
  background-image: url(POSTER/button2.svg);
  background-size: contain;
  width: 120px!important;
  margin-top: 80px;
}
.blog-btn a {
  display: inline-block;
}
.blog-btn img {
   width: 100%;
 }
.blog-btn:hover {
  background-color: transparent;
}
.blog-btn:hover img {
  visibility: hidden;
}
/* end blog */

/* gallery */
.swiper-slide img{
  width: 100%;
}
.gallery-btn {
  background-image: url(POSTER/button2.svg);
  background-size: contain;
  width: 120px!important;
  margin-top: 80px;
  margin-left: 65%;
}
.gallery-btn a {
  display: inline-block;
}
.gallery-btn img {
   width: 100%;
 }
.gallery-btn:hover {
  background-color: transparent;
}
.gallery-btn:hover img {
  visibility: hidden;
}
/* end gallery */


/* access */
.reserve-btn {
  background-image: url(img/reserve2.svg);
  background-size: contain;
  width: 120px;
  margin-top: 50px;
}
.reserve-btn a {
  display: inline-block;
}
.reserve-btn img {
   width: 100%;
 }
.reserve-btn:hover {
  background-color: transparent;
}
.reserve-btn:hover img {
  visibility: hidden;
}
/* end access */

/* recruit */
.recruit img{
  width: 100%;
}
.link-btn {
  background-image: url(POSTER/button2.svg);
  background-size: contain;
  width: 120px;
  margin-top: 50px;
}
.link-btn a {
  display: inline-block;
}
.link-btn img {
   width: 100%;
 }
.link-btn:hover {
  background-color: transparent;
}
.link-btn:hover img {
  visibility: hidden;
}

.heading img {
  margin: 40px auto;
  width: 100%;
}
.rec__top {
  background-color: #dae5e6;
  margin-bottom: 80px;
}
.rec__top li {
  line-height: 2rem;
  font-size: 16px;
}
.rec__top p {
  font-size: 14px;
}
.rec__title {
  padding-bottom: 15px;
}
.alert {
  border: solid 0.1rem ;
}
h6 {
  width: 100%;
  padding: 8px;
  background-color: #111111;
  color: #eeeeee;
  letter-spacing: 1rem;
}

/* recruit-accordion */
.re_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	color: #282b2e;
}
.re_actab input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.re_actab label {
  font-size: 18px;
  letter-spacing: .1rem;
	line-height: 3;
	position: relative;
	display: block;
	padding: 0 0 0 1em;
	cursor: pointer;
	margin: 0 0 1px 0;
  border: .1rem solid #666b71;
}
.re_actab .re_actab-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.8s;
	transition: max-height 0.8s;
	color: #282b2e;
  background: #dededf70;
}
.answer {
  padding: 18px;
}
.answer span {
  font-size: 20px;
}
.answer p {
  letter-spacing: .1rem;
}
/* :checked */
.re_actab input:checked ~ .re_actab-content {
	max-height: 35em;
}
/* Icon */
.re_actab label::after {
	line-height: 3;
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 3em;
	height: 3em;
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
	text-align: center;
}
.re_actab input[type=checkbox] + label::after {
  content: '＋';
}
.re_actab input[type=checkbox]:checked + label::after {
	transform: rotate(315deg);
}
/* end recruit-accordion */
.rec table {
  width: 100%;
  margin: 20px auto;
}
.rec tr {
  height: 40px;
  width: 100%;
}
.rec td {
  font-size: 14px;
  
}
/* end recruit */



/* footer */
footer {
  background-color: #1f2020;
  color: white;
  padding: 2rem 0 1rem;
}
footer img {
  height: 7rem;
  margin: 1.5rem 0;
}
footer a {
  color: white;
}

.icon {
  width: 2.5rem;
  margin: 0 1rem 0 1rem;
}
.light {
  border-color: #1a191996;
}/* end footer */



/* for pc */
@media (max-width: 1024px) {
  .row  {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  iframe {
    width: 100%;
    height: 500px;
  }
}
@media (max-width: 991px) {
  .caption {
    width: 150px;
    top: 49%;
  }
  iframe {
    width: 420px;
    height: 240px;
  }
  p {
    font-size: 0.9rem;
    line-height: 1.8rem;
  }
}

/* for tablet */
@media (max-width: 768px) {
  .row  {
    padding-left: 10px;
    padding-right: 10px;
  }

  .instagram-gallery__wrap, .instagram-gallery__item,  .instagram-gallery__caption  {
    grid-column: 12 span;
  }

  iframe {
    width: 380px;
    height: 500px;
  }
}

/* for smartphone */
@media (max-width: 414px) {
  .row  {
    padding-left: 5px;
    padding-right: 5px;
  }
  p {
    line-height: 1.8rem;
  }
  .caption {
    display: none;
  }
  .salon, .gallery, .access {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .concept {
    margin-bottom: 50px;
  }
  iframe {
    width: 100%;
    height: 420px;
  }

  .rec__top li {
    line-height: 2rem;
    font-size: 14px;
  }
  .rec__top p {
    font-size: 12px;
  }
  .rec__title {
    font-size: 16px;
  }
  .re_actab label {
    font-size: 14px;
  }
  .rec td {
    font-size: 12px;
  }
}
