/*
 * Base
 * -------------------------------------------------------------------
 */
/*	Reset
-------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  padding: 0;
  margin: 0;
  border: 0;
}

a {
  text-decoration: none;
  outline: none;
}

/*	Typography
-------------------------------*/
html {
	font-size: 62.5%;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

/*	Layout
-------------------------------*/
article, aside, footer, header, nav, section, main {
  display: block;
}

* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table tr th, table tr td {
  padding: 0;
  text-align: left;
  vertical-align: top;
}

ol, ul {
  list-style: none;
}

img {
  border-style: none;
  vertical-align: middle;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

img, svg {
  width: auto;
  height: auto;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before,
q:after, q:before {
  content: "";
  content: none;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

label[for] {
  cursor: pointer;
}

/*	Attributes & States
-------------------------------*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

html {
  font-size: 62.5%;
  margin-top: 0 !important;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 2;
  letter-spacing: 0.08em;
  background-color: #F9F9F9;
  color: #FFF;
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.3rem;
  }
}

.flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .flex {
    display: block;
  }
}

main {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 0;
  }
}
@media screen and (max-width: 1250px) {
  main {
    padding-top: 59px;
  }
}

/*
 * Module
 * -------------------------------------------------------------------
 */
.header {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #f9f9f900;
  padding: 20px 40px;
  transition: all 0.6s;
  background-color: #222222e0;
}
.global-nav {
    display: flex;
}
.global-nav li {
    margin-right: 15px;
}
@media screen and (max-width: 1250px) {
	.header {
		height: 100vh;
		width: 100%;
		overflow-y: scroll;
		display: block;
		top: -100vh;
		text-align: center;
	}
	.global-nav {
		display: block;
	}
	.global-nav li {
		margin-right: 0px;
		margin-bottom: 15px;
	}
}

.header.open {
  width: 100%;
  margin: 0;
  top: 59px;
  opacity: 1;
  position: fixed;
}
.header.open .humburger > .humburger__item--1 {
  background: black;
  transform: rotate(135deg);
  top: 28px;
}
.header.open .humburger > .humburger__item--2 {
  background: black;
  opacity: 0;
}
.header.open .humburger > .humburger__item--3 {
  background: black;
  transform: rotate(45deg);
  top: 28px;
}
.header.open .header__logo {
  text-align: center;
}

.header::-webkit-scrollbar {
  display: none;
}

.header__logo {
  box-sizing: border-box;
  top: 0;
  left: 0;
  font-family: "bigmoore", serif;
  font-size: 60px;
  line-height: 1;
}
@media screen and (max-width: 1250px) {
  .header__logo {
    text-align: center;
    font-size: 31px;
  }
}

.header__inner {
  display: flex;
  z-index: 999;
}
@media screen and (max-width: 1250px) {
  .header__inner {
    display: block;
    margin: 30px auto 0;
  }
}

.header__item {
  display: block;
  text-align: center;
  padding: 16px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 1250px) {
  .header__item {
    padding: 10px;
    border-bottom: none;
    font-size: 14px;
  }
}

.humburger {
  cursor: pointer;
  right: 0;
  top: 0;
  width: 100%;
  height: 59px;
  text-align: right;
  z-index: 1000;
  position: fixed;
  background-color: #f9f9f900;
  display: none;
}
@media screen and (max-width: 1250px) {
  .humburger {
    display: block;
  }
}
.humburger__item {
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all 0.5s;
  position: absolute;
  right: 20px;
}
.humburger__item--1 {
  transform: rotate(0);
  top: 20px;
}
.humburger__item--2 {
  top: 27px;
  opacity: 1;
}
.humburger__item--3 {
  transform: rotate(0);
  top: 34px;
}

.footer {
  padding: 100px 120px;
  background-image: url(/wp-content/uploads/clip/footer-back.jpg);
  color: white;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px;
  }
}

.footer__logo {
  width: 220px;
  height: 50px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    display: block;
  }
}

.footer__inner__address {
  width: 24.0833333333%;
}
.footer__inner__address p {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 1.6px;
}
.footer__inner__address p:last-of-type {
  font-size: 14px;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 768px) {
  .footer__inner__address {
    width: 100%;
  }
}

.footer__inner__menu div {
  display: flex;
}
.footer__inner__menu div:last-of-type {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .footer__inner__menu div:last-of-type {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner__menu div {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.footer__inner__menu div a {
  padding: 0 15px;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer__inner__menu div a {
    font-size: 14px;
    padding: 0 30px 0 0;
  }
}
.footer__inner__menu div a.sns {
  font-size: 14px;
  margin: 0 15px;
  padding: 7px 15px 7px 47px;
  color: #DF2E6E;
  border-radius: 22px;
  font-weight: bold;
  border: 1px solid #E56B8B;
  background-color: white;
  background-size: 24px 24px;
  background-position: top 9px left 16px;
  background-repeat: no-repeat;
}
.footer__inner__menu div a.sns.hotpepper {
  background-image: url(../asset/img/hotpepper_icon.svg);
}
.footer__inner__menu div a.sns.instagram {
  background-image: url(../asset/img/instagram_icon.svg);
}
@media screen and (max-width: 768px) {
  .footer__inner__menu div a.sns {
    margin: 15px 15px 0 0;
    font-size: 13px;
    padding: 5px 15px 5px 37px;
    background-size: 18px 18px;
    background-position: top 9px left 12px;
  }
}


/*
 * Content
 * -------------------------------------------------------------------
 */
body {
    background-image: url(/wp-content/uploads/clip/body-background1.jpg);
    background-size: contain;
    background-repeat: repeat;
}

p,h4,h3,h2,h1,a{
	font-family: serif;
}
p{
	font-size: 1.3em;
}
h2{
	font-size: 2.05em;
}
h3{
	font-size: 1.65em;
}

/*
 * TOP
 * -----------------------------------------------
 * */
.global-nav li:hover > a {
    color: #7E3E0E;
    transition: all .5s ease-out;
}
.contact_side_btn {
    position: fixed;
    top: calc(35% - 75px);
    right: 0;
    transform: translate(0, -50%);
    width: 75px;
    height: 150px;
    transition: all .5s;
    z-index: 9999;
}
.tel_btn.side_btn, .cal_btn.side_btn {
    width: 100%;
    height: 75px;
    background: #7E3E0E;
}
.tel_btn.side_btn{
	 border-bottom: 1px solid;
}
.tel_btn.side_btn:hover, .cal_btn.side_btn:hover {
    background: #653c1d;
	transition: all .5s ease-out: 
}
.tel_btn.side_btn a, .cal_btn.side_btn a {
    height: 75px;
    display: block;
}
.tel_btn_block, .cal_btn_block {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_side_btn img {
    height: 35px;
}

.content {
    width: 100%;
    overflow: hidden;
}
.head_slide_block {
    position: relative;
}
.head_catchcopy {
    width: fit-content;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(0, -50%);
    z-index: 1;
}
.head_catchcopy p {
    font-size: 1.5em;
}
.head_catchcopy h1 {
    font-size: 7.5em;
    font-family: 'Cormorant Garamond';
    font-weight: 600;
    margin: -.5em 0 -.25em;
}
.head_catchcopy h2 {
    font-size: 2.5em;
    line-height: 1.8;
}


.head_slide_box {
    width: 80%;
    max-width: 1250px;
    height: 650px;
    overflow: hidden;
    margin: 0 0 0 auto;
    position: relative;
    z-index: -1;
}
.slick-track {
    display: flex;
}
.head_slide_image img {
    height: 650px;
    width: 100%;
    object-fit: cover;
}
.head_slide_image img {
    height: 650px;
    width: 100%;
    object-fit: cover;
}

.concept {
    background-image: url(/wp-content/uploads/clip/body-background2.jpg);
    background-size: contain;
	margin-top: 150px;
}
.flex_box {
    display: flex;
	position: relative;
	overflow: hidden;
}
.concept .flex_box {
    max-width: 1250px;
    margin: auto;
}
.concept .flex_box:nth-child(even) {
    flex-direction: row-reverse;
}
.catchcopy,.image_block{
	flex: 1;
	position: relative;
}
.floating_textbox {
    margin: 12.5% 0 0 5%;
}
.image_box {
    margin: 7vh 5%;
	text-align: center;
}
.image_box img {
    width: 100%;
    max-width: 550px;
}

.staff_cath {
    padding: 100px 0;
    background-image: url(/wp-content/uploads/clip/staff-back.jpg);
    background-size: cover;
    position: relative;
}
.staff_cath h2{
	font-size: 3.5em;
}
.staff_cath h2:nth-child(odd) {
    margin-left: 15%;
}
.staff_cath h2:nth-child(even){
	margin-left: 38%;
}
.staff_cath .catchcopy {
    max-width: 1250px;
}
span.font_change {
    font-family: Mea Culpa;
    font-size: 1.1em;
    margin: 0 .1em;
}



.staff {
    background-image: url(/wp-content/uploads/clip/body-background2.jpg);
}
.staff .flex_box{
    height: 550px;
    justify-content: center;
    align-items: center;
}
.staff_image {
    margin: 5%;
	text-align: end:
}
.staff_image img {
    width: 100%;
    max-width: 450px;
}
.staff_desc {
    width: 100%;
    max-width: 650px;
    margin-right: 50px;
}
.staff_desc h3 {
    font-size: 2em;
}

.menu {
    overflow: hidden;
    background-image: url(/wp-content/uploads/clip/body-background3.jpg);
    padding-top: 150px;
}
.menu_outline {
    width: 100%;
    max-width: 1250px;
    margin: auto;
}
.menu_catchcopy {
    position: relative;
    width: 100%;
    max-width: 850px;
    margin: 0 5% 0 auto;
}
.menu_catchcopy h2 {
    font-size: 3.5em;
}
.menu_catchcopy p {
	font-size: .85em;
    text-align: end;
    color: #ACACAC;
    position: relative;
}
.menu_catchcopy p:after {
    content: "";
    position: absolute;
    width: calc(100% - 4em);
    border-bottom: 1px solid;
    left: 0;
    top: 50%;
}

.fixed_block {
	position: absolute;
    width: 100%;
    max-width: 480px;
	height: 100%;
    aspect-ratio: 1 / 5;
    background-image: url(https://braba.gb-design.site/wp-content/uploads/clip/top-fixes_menu.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: contain;
	z-index: 11;
}
.menu_desc {
    width: 100%;
    max-width: 850px;
    margin: 75px 5% 50px auto;
}
.menu_desc h3,.price {
    font-size: 2em;
}
p.price{
	color: #F1A737;
	font-weight: 500;
}
p.desc{
	margin-top: 50px;
}
.full_block {
    padding: 150px 0 150px 5%;
	position: relative;
	z-index: 10;
}
.full_block:before {
    content: "";
    position: absolute;
    width: 1000%;
    height: calc(100% + 150px);
    background: url(/wp-content/uploads/clip/body-background1.jpg);
    left: 0;
    top: 0;
    z-index: -1;
}
.other_menu_box {
    background-image: url(/wp-content/uploads/clip/body-background2.jpg);
    padding: 150px 0 300px;
}
.outline {
    background-image: url(/wp-content/uploads/clip/body-background3.jpg);
    width: 90%;
    max-width: 1650px;
    margin: auto;
	position: relative;
}
.other_menu {
    position: relative;
    z-index: 1;
	padding: 75px 0;
}
.other_menu_block h2, .other_menu_block h3 {
    text-align: center;
}
.other_menu_block h3 {
	font-size: 1.5em;
}
.post_deta_block {
    display: flex;
    flex-wrap: wrap;
    margin: 7vh auto;
    width: 80%;
    max-width: 1500px;
	justify-content: center;
}
.post_deta {
    padding-bottom: 15px;
    position: relative;
    width: 45%;
    margin-top: 30px;
}
.post_deta:after {
    position: absolute;
    content: "";
    border-bottom: 1px solid #fff;
    width: 100%;
    max-width: 500px;
    bottom: 0px;
}
.post_deta:nth-child(odd) {
    margin-right: 2.5%;
}
.post_deta:nth-child(even) {
    margin-left: 2.5%;
}
.post_deta.odd-last-child {
    margin: 30px auto 0 2.5%;
}

.flex_name {
    display: flex;
}
.menu_title, .menu_price,.menu_note {
    max-width: 500px;
}
.flex_name p {
    flex: 1;
}
.flex_name p:nth-child(even) {
    text-align: center;
}
.menu_note p {
    font-size: .85em;
}
.arrow_box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.slide_arrow.prev_arrow.slick-arrow {
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translate(0%, -50%);
    z-index: 10;
}
.slide_arrow.next_arrow.slick-arrow {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translate(0, -50%);
	z-index: 10;
}
.slick-arrow img {
    max-width: 100px;
}
.slide_arrow.next_arrow.slick-arrow img {
    transform: rotate(180deg);
}

.recruit {
    background-image: url(/wp-content/uploads/clip/top-recruit-back.jpg);
    height: 550px;
    background-size: cover;
	position: relative;
}
span.ruby {
    font-size: .65em;
    margin-left: 1em;
	color: #fff;
}
.recruit_desc {
    width: 80%;
    max-width: 600px;
    position: absolute;
    top: 50%;
    left: 7.5%;
    transform: translate(0, -50%);
}
.btn {
    margin-top: 30px;
    width: 80%;
    max-width: 450px;
    height: 75px;
    background: #5E6362;
}
.btn:hover {
    background: #59351a;
    transition: all .5s ease-out;
}
.btn a {
    width: 100%;
    height: 100%;
    display: block;
}
.link_area {
    height: 100%;
    display: flex;
    align-items: center;
	position: relative;
}
.link_area:after {
    content: "";
    position: absolute;
    border-bottom: 1px solid;
    width: 75%;
    top: 50%;
    right: -30%;
    transform: translate(0%, -50%);
}
.btn p {
    margin-left: 1em;
}
.title_tag:after {
    content: "";
    position: absolute;
    border-bottom: 1px solid;
    width: 100%;
    top: 50%;
    left: 7em;
    transform: translate(0, -50%);
}

.news,.company,.map {
    background-image: url(/wp-content/uploads/clip/body-background2.jpg);
	background-size: contain;
}
.news_inner {
    padding: 5vh 0 0;
    margin-left: 5%;
}
.title_tag {
    color: #ACACAC;
    position: relative;
}

.company {
    padding: 75px 0 100px;
}
.company .flex_box .text_box {
    padding: 50px;
}
.company_image {
    width: 100%;
    max-width: 750px;
}
.company_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map .text_box {
    margin-left: 5%;
    padding: 75px 0 20px;
}
.area_map iframe,.shop_map iframe{
	filter: grayscale(100%);
}
.area_map {
    width: 100%;
    margin: auto;
}

/*
 * レスポンシブここから
 * -------------------------------------------------------------------------
 * */

@media screen and (max-width: 1600px) {
	.fixed_block {
		max-width: 250px;
	}
	
}
@media screen and (max-width: 1200px) {
	.menu_catchcopy h2 {
		margin-left: 50px;
	}
	.fixed_block {
		display: none !important;
	}
	.menu_catchcopy {
		margin: 0;
	}
	.menu_desc {
		margin: 75px auto;
	}
	.post_deta {
		width: 60%;
		margin: 40px auto 0 !important;
	}
}
@media screen and (max-width: 900px) {
	.contact_side_btn{
		display: none;
	}
	.staff_image img {
		max-width: 250px;
	}
	.other_menu_box {
		padding-bottom: 150px;
	}
	.post_deta_block{
		margin: 0 auto 75px;
	}
	.menu_desc {
		padding: 30px;
		margin: 0 auto;
	}
	.menu_desc img {
		width: 100%;
		max-width: 550px;
	}
	.post_deta {
		width: 80%;
	}
	.company .flex_box {
		flex-direction: column;
	}
	.concept .flex_box {
		flex-direction: column !important;
	}
	.floating_textbox {
		margin: 12.5% 50px 0;
	}
	.image_box {
		margin: 50px auto;
	}
	.image_box img {
		max-width: 100%;
		height: 550px;
		object-fit: cover;
	}
	.slick-arrow img{
		max-width: 50px;
		opacity: .75;
	}
}
@media screen and (max-width: 600px) {
	.staff .flex_box {
		flex-direction: column;
		margin: 50px;
		height: auto;
	}
	.catchcopy.staff_desc {
		margin: 0;
	}
	.staff_cath .catchcopy {
		width: 80%;
		margin: auto;
	}
	.staff_cath h2 {
		margin: auto !important;
		text-align: center;
	}
	.post_deta_block {
		width: 100%;
	}
	.post_deta {
        width: 90%;
    }
	.slick-arrow img {
		width: 65px;
	}
	.news-list {
		width: 100% !important;
	}
	.news-item {
		width: 30% !important;
	}
	.link_area:after{
		display: none;
	}
}


/*
 * アニメーションCSS
 * -------------------------------------------------------------------------------
 * */
/* スクロールバー */
.main_content{
	position: relative;
}
.scrolldown1 {
    position: relative;
    width: fit-content;
    margin: 0 auto 350px;
}
.scrolldown1 span {
    position: relative;
    font-size: 1.25em;
    letter-spacing: 0.05em;
    display: block;
    text-align: center;
}
.scrolldown1 img {
    width: 75px;
}
.scrolldown1::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 125px;
    background: #eee;
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 1;
    top: calc(100% + 1.5em);
    left: 50%;
}
@keyframes pathmove{
	0%{
		height: 0;
		top: calc(100% + 0.5em);
		opacity: 0;
	}
	30%{
		height: 100px;
		opacity: 1;
	}
	100%{
		height:0;
		top: calc((100% + 1.5em) + 125px);
		opacity: 0;
	}
}

/*
 * フェードアニメーション
 * */

/* fadein-top */
.fadein-top {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 1.3s 0s ease-out;
}
/* fadein-bottom */
.fadein-bottom {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s 0s ease-out;
}
/* fadein-right */
.fadein-right {
    opacity: 0;
    transform: translateX(20px);
    transition: all 1s 0s ease-out;
}
/* fadein-left */
.fadein-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 1s 0s ease-out;
}
/* fadein-center */
.fadein-center {
    opacity: 0;
    transition: all 1s 0s ease-out;
}

.late_1{
    transition: all 1s .5s ease-out;
}
.late1{
    transition: all 1s 1s ease-out;
}
.late1_5{
    transition: all 1s 1.5s ease-out;
}
.late2{
    transition: all 1s 2s ease-out;
}
.late2_5{
    transition: all 1s 2.5s ease-out;
}
.late3{
    transition: all 1s 3s ease-out;
}
.late3_5{
    transition: all 1s 3.5s ease-out;
}
.late4{
    transition: all 1s 4s ease-out;
}
.late4_5{
    transition: all 1s 4.5s ease-out;
}
.late5{
    transition: all 1s 5s ease-out;
}
.late5_5{
    transition: all 1s 5.5s ease-out;
}






