@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Asap:wght@400;600;700&family=Sawarabi+Gothic&display=swap&family=Kosugi+Maru');
/*
Theme Name:bom_dia
Theme URI:https://www.bom-dia.biz/
Description: ストーリーの
Author:Bomdia
Author URI:https://www.bom-dia.biz/
Version:1.10
*/
/* ----------------------------------------------------------------------
 reset css
---------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table:not(.tinymce-table), caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  list-style: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  color: #696151;
  font-size: 14px;
  font-family: 'Sawarabi Gothic', sans-serif;
}

body.scrollNg {
  overflow: hidden;
  width: 100%;
}

a {
  color: #696151;
  text-decoration: none;
}

.flex {
  display: flex;
}

/* ----------------------------------------------------------------------
 共通パーツ
---------------------------------------------------------------------- */
.sp {
  display: none;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.xl-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.l-container {
  max-width: 980px;
  margin: auto;
  padding: 0 20px;
}

.m-container {
  max-width: 780px;
  margin: auto;
  padding: 0 20px;
}

.s-container {
  max-width: 680px;
  margin: auto;
  padding: 0 20px;
}

.asap {
  font-family: 'Asap', sans-serif;
  letter-spacing: 2px;
}

.txt-center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.txt_1 {
  line-height: 3rem;
}

.txt_2 {
  line-height: 2rem;
}

.txt_3 {
  line-height: 1.6rem;
}

.btn {
  padding: 1.25rem;
  border-radius: 10px;
  transition: .3s;
}

.btn:hover {
  opacity: .8 !important;
}

.btn.btn-de1 {
  background: #696151;
  color: #fff;
  text-decoration: none;
  border: none;
}
.btn.btn-sm {
  padding: 10px 20px;
  border-radius: 5px;
}

.vertical-middle {
  vertical-align: middle;
}

.scrollBox::-webkit-scrollbar {
  overflow-y: scroll;
}

.scrollBox::-webkit-scrollbar-track {

}

.scrollBox::-webkit-scrollbar-thumb {

}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------------------------------------------------------
  Header
---------------------------------------------------------------------- */
.header {
  background: rgba(255,232,220,47%);
}

.header_content {
  display: flex;
  align-items: center;
  height: 100px;
}

.header_nav {
  width: 50%;
}

.header_nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_nav ul li {

}

.header_nav ul li i {
  font-size: 1.2rem;
}

.header_nav ul li a {
  position: relative;
  font-weight: bold;
  color: #696151;
  text-decoration: none;
  transition: .2s;
}

.header_nav ul li a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0px;
  height: 1px;
  background: #ccc;
  transition: .2s;
}

.header_nav ul li a:hover {
  opacity: .8;
}

.header_nav ul li a:hover:after{
  width: 100%;
}

.header_logo {
  position: relative;
  margin-right: auto;
  font-size: clamp(1.25rem, 0.282rem + 3.23vw, 2.5rem);
  z-index: 200;
  transition: .2s;
}

.header_logo.open {
  color: #fff;
}

/*ハンバーガー*/
.hamburger-box {
  display: none;
  position: relative;
  z-index: 200;
  height: 50px;
  align-items: center;
  cursor: pointer;
}

.hamburger {
  position: relative;
}

.hamburger .hamburger-line {
  display: block;
  width: 40px;
  height: 2px;
  background: #696151;
  transition: .2s;
}

.hamburger::before,
.hamburger::after {
  display: block;
  content: "";
  position: absolute;
  height: 2px;
  background: #696151;
  transition: .2s;
}

.hamburger::before {
  top: -8px;
  width: 40px;

}

.hamburger::after {
  right: 0;
  bottom: -8px;
  width: 35px;
}

.hamburger.open .hamburger-line {
  opacity: 0;
}

.hamburger.open::before {
    transform: rotate(30deg);
    top: 0;
    background: #fff;
}

.hamburger.open::after {
  transform: rotate(-30deg);
  bottom: 0;
  width: 40px;
  background: #fff;
}

.hamburger-menu_cntent {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #696151;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.sp-nev_list {
  display: flex;
  flex-wrap: wrap;
  height: 80vh;
  align-items: center;
  align-content: center;
}

.sp-nev_list li {
  width: 100%;
  margin: 20px 0;
  text-align: center;
}

.sp-nev_list a {
  display: inline-block;
  margin: auto;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

.sp-nev_list a i {
  position: relative;
  top: 3px;
  margin-left: 5px;
}


/* ----------------------------------------------------------------------
  Main
---------------------------------------------------------------------- */

.top_reserve_tracking_btn {
  position: fixed;
  top: 60vh;
  right: 0;
  transform: rotate(-90deg);
  transform-origin: bottom right;
  width: 220px;
  height: 60px;
  line-height: 60px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  border: 1px solid #696151;
  z-index: 1000;
  cursor: pointer;
  transition: .3s;
}

.top_reserve_tracking_btn.white {
  color: #fff;
  border: 1px solid #fff;
}

.top_reserve_tracking_btn:hover {
  opacity: .8;
}

.top_view {
  position: relative;
  height: calc(100vh - 100px);
  background: rgba(255,232,220,47%);
}

.top_view-content {
  position: relative;
  width: 70%;
  height: 80%;
  margin-left: auto;
}

.top_view-backimage_slides_area {
  height: 100%;
  border-radius: 30px 0 0 30px;
  background-size: cover;
  background-position: center;
}

@keyframes kenburns {
    0% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}
.vegas-slide {
  border-radius: 30px 0 0 30px;
}
.vegas-timer {
  display: none;
}

.top_view-textBox {
  position: absolute;
  top: 55%;
  left: 0;
  width: 60%;
  max-width: 625px;
  transform: translate(-50%,-50%);
}

.top_view-titleTxt {
  margin-bottom: 3%;
  color: #fff;
  text-stroke: 1px #000;
  -webkit-text-stroke: 1px #000;
  font-size: 50px;
}

.top_view-descriptionTxt {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  line-height: 2rem;
}

.top_view-urlTxt {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: rotate(-90deg) translateY(-50%);
  font-size: clamp(1.125rem, 0.966rem + 0.8vw, 1.563rem);
  font-weight: bold;
}

.top_catchcopyTxt {
  padding: 90px 0 100px;
  font-family: 'Kosugi Maru';
  font-size: 30px;
  text-align: center;
}

.top_section {
  padding: 120px 0;
}

.top_sectionTitle {
  margin-bottom: 60px;
  font-size: 2.5rem;
  font-family: 'Asap', sans-serif;
  letter-spacing: 3px;
}

.top_sectionSubTitle {
  display: block;
  font-family: 'Sawarabi Gothic', sans-serif;
  font-size: 14px;
  letter-spacing: 0;
}

/*News*/
.news_section {
  padding: 80px 0 0;
}

.top_news_list .item {
  width: 70%;
  margin: auto;
  padding: 0 20px;
  border-bottom: 1px solid #ccc;
}

.top_news_list .item a {
  display: flex;
  align-items: center;
  padding: 8px 0;
  transition: .3s;
}

.top_news_list .item a:hover {
  opacity: .8;
}

.top_news_list .item .date {
  width: 20%;
}

/*Concept*/
.conecpt_section {
  padding-top: 20px;
  padding-bottom: 180px;
}

.concept_contentBox {
  display: flex;
  flex-wrap: wrap;
}

.concept_viewBox {
  width: 45%;
  background: url('./images/concept.png');
  background-size: cover;
  background-position: center;
  border-radius: 0 30px 30px 0;
}

.top_conceptBody {
  padding: 50px 0px 50px 6%;
}

.top_conceptBody p {
  font-size: 16px;
}

/*Kids Space*/
.kids-space_section {
  margin-bottom: 160px;
  background: #696151;
  color: #fff;
}

.kids-space_contentBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
}

.top_kids-spaceBody p {
  font-size: 16px;
}

.kids-space_slide_viewBox {
  position: relative;
  width: 45%;
}

.kids-space_slide_viewContent {
  position: absolute;
  top: -40px;
  width: 100%;
  height: 580px;
  background: url('./images/kids_space.jpg');
  background-size: cover;
  border-radius: 30px;
}

/*Stylist*/
.stylist_contentBox {
  position: relative;
  width: 85%;
  margin-left: auto;
  padding: 120px 0;
  padding-right: 10%;
  background: #FFF4EE;
  border-radius: 30px 0 0 30px;
  box-sizing: border-box;
}

.stylist_contentBox .top_sectionTitle {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%,-50%);
}

.top_stylistList-ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 10%;
  text-align: center;
}

.top_stylistList-ul li {
  width: 23%;
}

.top_stylistList-ul .pf_image {
  width: 100%;
  padding-bottom: 65%;
  background: #ccc;
  border-radius: 10px;
}

.top_stylistList-ul .name {
  padding: 18px 0 12px;
  font-size: 1.2rem;
  border-bottom: 1px solid #ccc;
}

.top_stylistList-ul .position {
  margin-top: 12px;
}

/*Menu*/
.menu_section {
  position: relative;
  padding: 80px 0;
}
.menu_contentBox {
  width: 85%;
  padding: 0 0 100px ;
  padding-left: 15%;
  background: #F9F9F9;
  border-radius: 0 30px 30px 0;
  box-sizing: border-box;
}

.menu_contentBox .top_sectionTitle {
  margin-bottom: 60px;
  transform: translateY(-50%);
  text-align: center;
}

.top_menuListBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top_menuList-content {
  width: 28%;
}

.top_menuList-ul .category {
  font-size: 26px;
  font-family: 'Asap', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
}

.top_menuList-ul .item {
  display: flex;
  justify-content: space-between;
}

.top_menuList-ul .item .price {
  font-family: 'Asap', sans-serif;
}

.top_menuList-ul.cutCategory {
  margin-bottom: 3.2rem;
}

.top_menuList-ul.treatmentCategory {
  margin-bottom: 1.6rem;
}

.top_menuList-ul .category hr {
  margin: 12px 0;
}

.top_menuList_open_readMore-btn {
  margin-top: 80px;
  background: #696151;
  color: #fff;
  cursor: pointer;
}

.top_menuList_close_readMore-btn {
  position: fixed;
  top: 20px;
  right: 50px;
  font-size: 2rem;
  cursor: pointer;
}

.top_menuList-modal {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.top_menuList-modal .back_layer {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(255,255,255,.7);
}

.top_menuList-modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 960px;
  height: 80vh;
  padding: 50px;
  color: #fff;
  background: #696151;
  z-index: 1;
  box-sizing: border-box;
  border-radius: 5px;
  overflow-y: scroll;
}

.top_menuList-modalTitle {
  margin-bottom: 50px;
  padding-bottom: 40px;
  font-size: 2rem;
  text-align: center;
  border-bottom: 1px solid #fff;
}

.top_menuList-showBox {
  margin-bottom: 40px;
}

.top_menuList-showTitle {
  margin-bottom: 13px;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.top_menuList-showDescription {
  margin-bottom: 20px;
  font-size: 13px;
}

.top_menuList-modal_content .top_menuList-showTable {
  width: 100%;
  
  border-collapse:  collapse;
  font-size: 13px;
}

.top_menuList-showTable td {
  padding: 10px 20px;
  border: 1px solid #fff;
  vertical-align: middle;
}

/*Gallery*/
.gallery_section {
  padding: 80px 0;
  margin-bottom: 40px;
}

.gallery_contentBox {
  text-align: center;
}

.gallery_contentBox .top_sectionTitle {
  display: flex;
  justify-content: center;
  align-items: end;
}

.gallery_contentBox .top_sectionTitle i {
  margin-left: 10px;
}

.top_galleryList-ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}

.top_galleryList-ul .item {
  width: 23%;
  padding-bottom: 23%;
  margin-bottom: 20px;
  background: #ccc;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

/*Reserve*/
.reserve_section {
  background: #FFF4EE;
}

.reserve_contentBox {
  text-align: center;
}

.reserve_contentBox .top_sectionTitle hr {
  width: 50px;
  margin: 5px auto 8px;
}

.top_reserveBody {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.top_reserveBody .btn {
  width: 40%;
  max-width: 260px;
  font-size: 1.2rem;
}

.top_reserveBody .btn i {
  margin-right: 8px;
}

.top_reserveBody .btn i.fa-phone-alt {
  position: relative;
  bottom: 2px;
  font-size: .9rem;
}

/*Blog*/
.top_blog_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 100px;
}

.top_blog_list a {
  transition: .3s;
}

.top_blog_list a:hover {
  opacity: .8;
}

.top_blog_list .item {
  width: 31.5%;
}

.top_blog_list .item .image_box {
  margin-bottom: 24px;
}

.top_blog_list .item .image_box img {
  width: 100%;
  border-radius: 10px;
}

.top_blog_list .item .date {
  margin-bottom: 5px;
  font-size: 11px;
}

.top_blog_list .item .title {
  margin-bottom: 10px;
}

.top_blog_list .item .body {
  font-size: 11px;
}

.top_blog_readMore-box {
  font-size: 1.2rem;
  text-align: center;
}

/*access*/
.access_section {
  padding: 60px 0 180px;
}
.access_contentBox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.access_contentBox .top_sectionTitle hr {
    width: 50px;
    margin: 5px 0 8px;
}

.top_access_viewBox {
  width: 50%;
  background: url('./images/shop.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.top_access_viewBox img {
  width: 100%;
}

.top_accessItemBox {
  display: flex;
  margin-bottom: 12px;
  font-size: 16px;
}

.top_accessBody {
  width: 50%;
  padding: 20px 0 20px 40px;
  box-sizing: border-box;
}

.top_accessBody .top_sectionTitle {
  margin-bottom: 30px;
}

.top_accessItemBox .item_title {
  width: 80px;
}

/*Footer*/
.footer {
  padding: 100px 0;
  background: #696151;
  text-align: center;
  color: #fff;
}

.footer_logText {
  margin-bottom: 20px;
    font-size: clamp(1.25rem, 0.282rem + 3.23vw, 2.5rem);
    font-weight: bold;
    color: #fff;
}

#Copyright {

}




/*-------------------
固定ページ共通
--------------------*/
.page {
  padding-bottom: 120px;
}
.page .page_title {
  margin: 5vh 0;
  padding: 2rem 0;
  font-size: 2rem;
  text-align: center;
}



/*-------------------
Blogページ
--------------------*/
.blog-card_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog-card_item_box {
  width: 25%;
  margin-bottom: 20px;
  padding: 0 10px;
}
.blog-card_item_box img {
  width: 100%;
}
.blog-card_thumbnail {
  margin-bottom: 12px;
}
.blog-card_date {
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px dotted #ccc;
}


/*----------------------
投稿ページ
----------------------*/
.single-date {
  margin-top: 64px;
  font-size: 1.2rem;
}
.single-title {
  margin-top: 16px;
  padding-bottom: 20px;
  font-size: 1.6rem;
  border-bottom: 1px solid #bbb7af;
}
.single-thumbnail_box {
  margin-top: 100px;
}
.single-thumbnail_box img {
  width: 100%;
}
.single-body {
  margin-top: 40px;
}
.single-body p {
  margin: 10px 0;
}