@charset "UTF-8";
/*■■■■■■■■■■■■■■■■■■■■■
共通
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem; /* 16px*/
  line-height: 2;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: rgba(42, 42, 42, 1.00)
}
header {
    z-index: 20;
    background: rgba(255,255,255,0.9);
    position: fixed;
    top:0;
    width: 100%;
    transition:0.5s;
}
.hide {
    top:-120px;
}
a {
  color: currentColor;
  text-decoration: none;
  transition: 0.3s;
}
.wrapper {
  width: 85%;
  max-width: 1200px;
  margin: auto;
}
.fixed {
    position:fixed;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flexwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flexend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.eng {
  font-family: 'Old Standard TT', serif;
}
.eng span {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}
main {
    padding: 125px 0 0 0;
}
.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 30%);
  transition: 1.3s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
  transition-timing-function: ease;
}
.fadeIn_left {
  opacity: 0;
  transform: translate(-30%, 0);
  transition: 1.5s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
  transition-timing-function: ease;
}
.fadeIn_right {
  opacity: 0;
  transform: translate(30%, 0);
  transition: 1.5s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
  transition-timing-function: ease;
}
/*■■■■■■■■■■■■■■■■■■■■■
ハンバーガーメニュー
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
.hamburger-menu {
  display: none;
}
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90; /*background-color: #3584bb;*/
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #888;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
#menu-btn-check {
  display: none;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: rgba(45, 45, 45, 0.95);
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
  width: 90%;
  margin: auto;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 1.7rem;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
  line-height: 1.8;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: rgba(45, 45, 45, 0.95);
  transition: all 0.5s; /*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
}
/*■■■■■■■■■■■■■■■■■■■■■
ヘッダーメニュー
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
div#headmenue {
  padding: 25px 0 0;
}
h1.rogo_box {
  width: 50px;
  transition:0.3s;
}
img.roto_img {
    width: 100%;
}
nav {
  /* width: 80%; */
  width: calc(100% - 50px);
}
nav ul {
  width: 95%;
  margin: auto 0 auto 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  /* height: 100%; */
  -ms-flex-line-pack: end; /* align-content: flex-end; */
}
nav ul li {
  display: inline-block;
  margin: 0 0 0 1%;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.05em;
  display: flex;
  -ms-flex-line-pack: end;
  align-content: flex-end;
  /* position: relative; */
  padding: 15px;
}
nav ul li:last-child {
  padding: 15px 0 15px 15px;
}
nav ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
nav ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #888;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .4s;
}
nav ul li a:hover::after {
  transform: scale(1, 1);
}
a#englink {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 50;
    background: #323232;
    color: #FFF;
    padding: 0 0.5em;
}
/*■■■■■■■■■■■■■■■■■■■■■
スライド部分
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
div#slide {
  width: 100%;
  height: 700px;
}
.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  height: 100%;
}
/*.swiper-container {
	height: 100%;
}*/
.topslide {
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
}
.swiper-slide {
  background-size: cover;
  background-position: center center;
  position: relative;
}
.topslide .swiper-slide {
  position: relative;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #FFF;
  opacity: 0.3;
}
.swiper-pagination-bullet-active {
  opacity: 0.9;
  background: #FFF;
}
/*.swiper-slide-prev, .swiper-slide-next {
	opacity: 0.5;
	transition: 1s;
}*/
.mainvisual {
  overflow-x: hidden;
  height: 100%;
}
.topslide .swiper-slide a {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgb(0 0 0 / 40%);
    line-height: 1;
    padding: 0.5em;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: #FFF;
}
.topslide .swiper-slide a:hover {
opacity: 0.6;
}

/*■■■■■■■■■■■■■■■■■■■■■
whatsnew部分
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
h2 {
  font-size: 1.3rem;
  line-height: 1.3;
  width: 50%;
  margin: 8px 0 0 0;
}
h2 span {
  display: block;
  margin: 5px 0 0 0;
  font-size: 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}
div#news {
  width: 34%;
  margin: -6% 0 0 10%;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 10;
  padding: 3%;
}
#news h3 {
  font-size: 2.3rem;
  letter-spacing: 0.1em;
}
#news ul {
  font-size: 1.3rem;
}
#news ul li {
  margin: 12px 0;
  font-size: 1.3rem;
}
#news li a {
  display: inline-block;
  border-bottom: dotted 1px #7D7D7D;
  line-height: 1.4;
  padding: 0 0 2px;
}
#news li a:hover {
  color: rgba(113, 0, 1, 1.00);
  border-bottom: dotted 1px currentcolor;
}
#photo_under #news h3 span {
    font-size: 1.4rem;
    margin: 0 0 0 2em;
    float: right;
    display: block;
}
#photo_under #news h3 span a {
    border-bottom: 2px solid currentColor;
}
#photo_under #news h3 span a:hover {
    color: rgba(113, 0, 1, 1.00);
}
/*■■■■■■■■■■■■■■■■■■■■■
途中全面写真部分
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
section.w100photo {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center center;
  margin: 100px 0;
}
/*■■■■■■■■■■■■■■■■■■■■■
allsection部分
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
/*section.allsection {
  max-width: 1000px;
  margin: 100px auto 0;
  position: relative;
  padding: 100px 0 0 0;
}*/
section.allsection {
    max-width: 1000px;
    margin: 40px auto 80px;
    position: relative;
    padding: 0px 0 0 0;
}
.allsection h4 {
  font-weight: 600;
  font-size: 2.2rem;
  margin: 0 0 24px 0px;
}
.allsection h4::before {
  content: "■";
  font-size: 10px;
  margin: 0 1em 0 0;
}
.text-line-leftbottom::after {
  content: "";
  background: currentColor;
  height: 1px;
  width: 500px;
  margin: -1em 0 0 calc(-500px - 1em);
  line-height: 0;
  display: none;
}
.is-show.text-line-leftbottom::after {
  display: block;
}
.text-line-right {
  align-items: center;
  content: "";
}
.text-line-right:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  display: inline-block;
  width: 150px;
  margin: 0 0 0.3em .4em;
  background: currentcolor;
}
.allsection h3 {
  font-size: 200%;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin: 0 0 48px 0;
}
.text_block {
  width: 55%;
}
.allsection h5 {
  font-size: 1.7rem;
  margin: 0 0 8px 0;
}
.allsection p {
  font-size: 1.4rem;
  line-height: 2.5;
}
.allsection .text_block a {
  margin: 24px 0 0 auto;
  display: inline-block;
  font-size: 1.5rem;
  border-bottom: solid 1px currentColor;
  line-height: 1.2;
  float: right;
  padding: 0 0 0 2em;
  font-weight: 600;
}
.allsection .text_block a:hover {
  margin: 24px 0 0 auto;
  padding: 0 0 0 0;
  color: rgba(113, 0, 1, 1.00);
}
.photo_block {
  width: 40%;
  margin: 5% 0 0 5%;
  background-size: cover;
  background-position: center center;
}
/*■■■■■■■■■■■■■■■■■■■■■
アバウト部分
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
#about.allsection h4 {
  margin: 0 0 24px 0;
  position: relative;
  left: 0;
}
#about.allsection h3 {
  font-size: 250%;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin: 0 0 48px 0;
}
/*■■■■■■■■■■■■■■■■■■■■■
ブランド部分
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
.brandphoto {
  display: block;
  width: 48%;
  margin: 1%;
  height: 480px;
  background-size: cover;
  background-position: center center;
  display: flex;
}
#brand a img {
  display: block;
  margin: auto;
  width: 40%;
}
#brand h5 {
  width: 100%;
}
#brand p {
  width: 70%;
}
.b_text_block {
  margin: 24px 1% 0 1%;
}
.link {
  width: 30%;
  text-align: right;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
ul.b_linkbox {
  position: absolute;
  bottom: 0;
  right: 0;
}
.link a {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding: 0 0 0 2em;
  display: inline-block;
  line-height: 1.2;
}
.link a:hover {
  padding: 0;
  color: rgba(113, 0, 1, 1.00);
}
.link a span {
  font-size: 1.3rem;
}
/*■■■■■■■■■■■■■■■■■■■■■
直営店部分
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
.shoplist li {
  width: 29.33333%;
  margin: 2% 2% 4%;
  border-bottom: 1px solid #a4a4a4;
  padding: 0 0 1%;
}
.shopphoto {
  height: 200px;
  background-size: cover;
  background-position: center center;
  display: block;
}
a.shopphoto:hover {
  opacity: 0.7;
}
.shoplist h6 {
  font-size: 1.9rem;
  line-height: 1.1;
  margin: 8px 0 16px;
}
.shoplist h6 span {
  font-size: 1.3rem;
}
.shoplist .address {
  font-size: 1.2rem;
}
.shoplist p {
  font-size: 1.2rem;
  line-height: 1.6;
}
p.s_cate {
  border: solid 1px #999;
  padding: 0.3em 1.3ex;
  line-height: 1;
  display: inline-block;
  margin: 16px 0 1px 0;
  font-size: 1.2rem;
}
.address a {
  font-weight: 500;
  border-bottom: dotted 1px currentColor;
  margin: 0 0 4px 0;
  display: inline-block;
}
.shoplist h6 a:hover, .address a:hover {
  color: #910808;
}
.icon a {
  width: 30px;
  margin: 2px;
  line-height: 1;
  opacity: 0.5;
}
.icon a img {
  width: 100%;
  height: auto;
}
.icon a:hover {
  opacity: 1;
}
.shoplist li.blogetc {
  border: 1px solid #a4a4a4;
  padding: 2%;
  width: calc(25.333333% - 2px);
  position: relative;
}
.blogphoto {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center center;
}
.blogetc a:hover {
  color: #910808;
}
a.allviewlink {
  position: absolute;
  bottom: 4%;
  right: 7%;
  display: inline-block;
  line-height: 1;
  border-bottom: 1px solid currentColor;
  padding: 0 0px 0 1em;
}
a.allviewlink:hover {
  padding: 0;
}
.blogetc p {
  font-size: 1.4rem;
  margin: 15px 0 0;
}
li.s_eventinfo {
  background: #eeede8;
  border: none;
  width: calc(25.333333% - 0px);
  padding: 2%;
}
.s_eventinfo ul li {
  width: 100%;
  padding: 8px 0;
  margin: 0;
}
p.s_event_title {
  font-size: 1.4rem;
  font-weight: 500;
}
p.s_event_title span {
  display: inline-block;
  /* border: solid 1px currentColor; */
  line-height: 1.4;
  padding: 0 0.5em;
  font-size: 1.3rem;
  margin: 0 0.5em 0 0px;
  vertical-align: text-bottom;
  color: #ffffff;
  background: #b6aea1;
  font-weight: 600;
}
p.data {
  font-size: 1.4rem;
  line-height: 1.2;
}
.s_eventinfo img {
    width: 100%;
}
/*■■■■■■■■■■■■■■■■■■■■■
ビジネス部分,リクルート部分
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
.basegray {
    width: 100%;
    background-color: #f4f4f4;
    margin: 0;
    padding: 80px 0 80px 0;
}
/*■■■■■■■■■■■■■■■■■■■■■
コンテンツリスト部分
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
.contents_naka {
  padding: 20px 0 30px;
}
.contentsphoto {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center center;
  transition: 0.3s;
}
a:hover > .contentsphoto {
  /*background-size: 110%;*/
}
.contentslist {
  width: 100%;
  margin: auto;
}
.contentslist p.copy {
  font-size: 1.2rem !important;
  line-height: 1.2;
}
.contentslist h5.logo{
  font-size: 1.4rem !important;
  line-height: 1.2;
}
.contentslist p.date {
  font-size: 1.4rem !important;
  line-height: 1.5;
  margin: 8px 0 0 0;
}
.contentslist .swiper-slide-prev, .contentslist .swiper-slide-next {
  opacity: 1;
  transition: 1s;
}
.contentslist .swiper-pagination-bullet {
  background: #4f4f4f;
}
.contentslist .swiper-pagination-bullets {
  bottom: 0;
  left: 0;
  width: 100%;
}
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  bottom: 1%;
  width: 27px;
  height: 20px;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 20px;
  -webkit-background-size: 27px 20px;
  background-size: 27px 20px;
  background-position: center;
  background-repeat: no-repeat;
  top: auto;
}
.leftbtn {
  background-image: url(../img/SVG/left.svg);
  left: 2px;
  auto: auto;
}
.rightbtn {
  background-image: url(../img/SVG/right.svg);
  right: 2px;
  left: auto;
}
/*■■■■■■■■■■■■■■■■■■■■■
フッター部分
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
footer {
  background: #f0f0f0;
  border-top: solid 1px #d5d5d5;
  color: #999999;
  font-size: 1.2rem;
}
footer .wrapper {
  padding: 30px 0 90px 0;
  max-width: 1000px;
}
div#mprogo {
  width: 20%;
}
#mprogo img {
  width: 100%;
  max-width: 135px;
  margin: auto;
  display: block;
}
#f_linkbox {
  width: 50%;
  margin: 0 0 0 30%;
}
ul.f_link, ul.sns {
  width: 31.333333%;
  margin: 0 1%;
  letter-spacing: 0.1em;
}
.insta::before {
  content: "";
  display: inline-block;
  background-image: url(../img/SVG/insta_rogo.svg);
  width: 1.4em;
  background-size: contain;
  height: 1.4em;
  vertical-align: middle;
  margin: 0 3px 0 0;
  background-repeat: no-repeat;
}
.face::before {
  content: "";
  display: inline-block;
  background-image: url(../img/SVG/fb_rogo.svg);
  width: 1.4em;
  background-size: contain;
  height: 1.4em;
  vertical-align: middle;
  margin: 0 3px 0 0;
  background-repeat: no-repeat;
}
.youtu::before {
  content: "";
  display: inline-block;
  background-image: url(../img/SVG/youtu_rogo.svg);
  width: 1.4em;
  background-size: contain;
  height: 1.4em;
  vertical-align: bottom;
  margin: 0 3px 0 0;
  background-repeat: no-repeat;
}
.pinta::before {
  content: "";
  display: inline-block;
  background-image: url(../img/SVG/pinta_rogo.svg);
  width: 1.4em;
  background-size: contain;
  height: 1.4em;
  vertical-align: middle;
  margin: 0 3px 0 0;
  background-repeat: no-repeat;
}
div#copyright {
  border-top: solid 1px #d5d5d5;
}
footer #copyright .wrapper {
  padding: 0 0 30px;
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
}
#copyright p {
  line-height: 1.4;
}
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
メディアクエリー
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
@media screen and (max-width: 964px) {
  /* 964pxまでの幅の場合に適応される */
  /*■■■■フッター964▼▼▼▼*/
  footer #copyright .wrapper {
    padding: 0 0 30px;
    display: block;
  }
}
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
900-メディアクエリー-900
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
@media screen and (max-width: 900px) {
  /* 900pxまでの幅の場合に適応される */
  /*■■■■ヘッダーメニュー900▼▼▼▼*/
  section#top {
    width: 100%;
  }
  nav ul {
    width: 90%;
    margin: 0 0 0 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    /* height: 100%; */
    -ms-flex-line-pack: end;
    /* align-content: flex-end; */
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  nav ul li {
    margin: 0;
    font-size: 1.7rem;
    display: flex;
    padding: 0;
    width: 33.333%;
  }
  nav ul li:last-child {
    padding: 0;
  }
  nav ul li a {
    margin: 0 0 0 auto;
    padding: 10px 0 0 0;
  }
  
.lang-switch {
    margin: 8px 0 16px auto;
}
  /*■■■■スライド部分900▼▼▼▼*/
  div#slide {
    width: 100%;
    height: 100vw;
  }
  /*■■■■whasnew部分900▼▼▼▼*/
  h2 {
    font-size: 1.3rem;
    line-height: 1.3;
    width: 90%;
    margin: 8px auto 0;
  }
  #news h3 {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
  div#news {
    width: 90%;
    margin: 5% auto;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 10;
    padding: 50px 0 50px 0;
    border-bottom: 1px solid currentColor;
  }
  /*■■■■allsection部分900▼▼▼▼*/
  .allsection h3 {
    font-size: 170%;
    letter-spacing: 0;
    line-height: 1.3;
    margin: 0 0 24px 0;
  }
  /*■■■■アバウト部分900▼▼▼▼*/
  #about.allsection .flexwrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  #about .photo_block {
    width: 100%;
    margin: 0 0 0 0;
    height: 350px;
  }
  #about .text_block {
    width: 85%;
    margin: 4% auto 0;
  }
  #about.allsection h3 {
    font-size: 180%;
    letter-spacing: 0.1em;
    line-height: 1.3;
    margin: 0 0 10px 0;
  }
}
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
635-メディアクエリー-635
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
@media screen and (max-width: 635px) {
  /* 635pxまでの幅の場合に適応される */
  /*■■■■ハンバーガーメニュー635▼▼▼▼*/
  .hamburger-menu {
    display: block;
  }
  /*■■■■ヘッダーメニュー635▼▼▼▼*/
  #headmenue nav {
    display: none;
  }
a#englink {
    display: none;
}
    li.enlink {
    margin: 30px auto 0 !important;
    border: none !important;
    /* background: #000; */
}
  /*■■■■allsection部分600▼▼▼▼*/
  section.allsection {
    max-width: 1000px;
    margin: 80px auto 0;
    position: relative;
    padding: 0px 0 0 0;
  }
  /*■■■■アバウト部分600▼▼▼▼*/
  #about.allsection h3 {
    font-size: 170%;
    letter-spacing: 0em;
  }
  .allsection p br {
    display: none;
  }
  .allsection p {
    text-align: justify;
  }
  /*■■■■ハブランド635▼▼▼▼*/
  .brandphoto {
    display: block;
    width: 98%;
    margin: auto;
    height: 300px;
    background-size: cover;
    background-position: center center;
    display: flex;
  }
  .brandphoto#studiom {
    background-position: center bottom;
  }
  #brand p {
    width: 100%;
  }
  .b_text_block {
    width: 85%;
    margin: 24px auto;
  }
  .link {
    width: 100%;
  }
  ul.b_linkbox {
    position: relative;
    bottom: 0;
    right: 0;
  }
  /*■■■■直営店635▼▼▼▼*/
  .shoplist li {
    width: 46%;
  }
  .shoplist li.blogetc {
    width: calc(42% - 2px);
  }
  .shoptext {
    width: 85%;
    margin: auto;
  }
  .blogetc p {
    font-size: 1.4rem;
    margin: 15px 0 8px;
  }
  a.allviewlink {
    position: relative;
    bottom: 0;
    right: 0;
    display: block;
    float: right;
  }
  li.s_eventinfo {
    background: #eeede8;
    border: none;
    width: calc(42% - 0px);
    padding: 2%;
  }
  .s_eventinfo h6 span {
    display: inline-block;
  }
  /*■■■■フッター635▼▼▼▼*/
  div#mprogo {
    width: 100%;
  }
  #mprogo img {
    width: 100%;
    max-width: 135px;
  }
  #f_linkbox {
    width: 90%;
    margin: 25px auto 0;
    justify-content: space-between;
  }
  ul.f_link, ul.sns {
    width: auto;
    margin: 0 1%;
    letter-spacing: 0.1em;
    text-align: left;
  }
  /*■■■■ビジエネス、リクルート635▼▼▼▼*/
  .text_block {
    width: 85%;
    margin: 20px auto 0;
  }
  #forbussiness .flexwrap, #recruit .flexwrap {
    flex-direction: column-reverse;
  }
  #forbussiness .photo_block, #recruit .photo_block {
    height: 300px;
    width: 100%;
    margin: auto;
  }
}
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
600-メディアクエリー-600
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
@media screen and (max-width: 600px) {
  /* 600pxまでの幅の場合に適応される */
  /*■■■■途中全面写真600▼▼▼▼*/
  section.w100photo {
    width: 100%;
    height: 100vw;
    margin: 100px 0 0;
  }
}
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
480-メディアクエリー-480
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  /*■■■■ヘッダーメニュー480▼▼▼▼*/
  h1 {
    width: 155px;
    margin: auto;
  }
  /*■■■■アバウト480▼▼▼▼*/
  #about.allsection h3 {
    font-size: 150%;
    letter-spacing: 0em;
  }
  /*■■■■直営店480▼▼▼▼*/
  .shoplist li {
    width: 100%;
  }
  .shoplist li.blogetc {
    width: calc(100% - 2px);
  }
}
/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
追加分
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/
.hidden {
  display: none;
}
.boshu {
  position: fixed;
  width: 90%;
  height: max-content;
  background: #f3f0eb;
  display: block;
  top: 50%;
  left: -90%;
  z-index: 1000;
  transition: 0.3s;
  box-shadow: 2px 2px 6px #7d7d7d;
  max-width: 750px;
  padding: 40px;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: border-box;
  font-size: 14px;
}
.boshu.open {
  left: 50%;
}
.material-symbols-outlined {
  font-size: 40px;
}
.open.close {
  left: -120%;
}
a.close.btn {
  position: absolute;
  right: 1%;
  top: 1%;
  display: block;
  cursor: pointer;
}
p.boshu_title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-bottom: solid 1px currentColor;
  padding: 0 0 8px 0;
  margin: 0 0 8px 0;
}
p.boshu_copy {
  font-size: 14px;
  text-align: center;
  line-height: 1.8;
}
ul.shosai {
  margin: 12px 0;
  border: 3px double currentColor;
  padding: 15px 25px;
  box-sizing: border-box;
}
ul.shosai li {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 8px 0;
}
ul.shosai li .left {
  width: 70px;
}
ul.shosai li .right {
  width: calc(100% - 75px);
}
span.border {
  display: block;
  width: 100%;
  border-bottom: solid 1px currentColor;
  margin: 0.5em 0;
}
a.moshikomi {
  width: 100%;
  display: block;
  padding: 0.5em;
  border: solid 1px currentColor;
  text-align: center;
  box-sizing: border-box;
}
a.open.btn {
  display: inline-block;
  padding: 0.2em 1em;
  border: solid 1px currentColor;
  margin: 12px 0 12px 0;
}

@media screen and (max-width: 635px) {
p.boshu_title {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-bottom: solid 1px currentColor;
  padding: 0 0 4px 0;
  margin: 0 0 4px 0;
}
.boshu {
  padding: 20px;
}
ul.shosai {
  margin: 12px 0;
  border: none;
  padding: 0;
  box-sizing: border-box;
}
p.boshu_copy {
  font-size: 13px;
  text-align: justify;
  line-height: 1.8;
}
p.boshu_copy br {
  display: none;
}
}
.shoplist li.brunchbox {
  width: 100%;
  margin: 2% 2% 0;
  font-size: 1.8rem;
  padding: 0;
  font-weight: 600;
}
img.lang_icon {
    width: 14px;
    vertical-align: middle;
    margin: 0 4px 0 0px;
    opacity: 0.7;
}
p.nowlang {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5rem;
}
.lang-switch_now {
    cursor: pointer;
}
.jalink, .enlink {
    padding: 4px 8px;
    margin: 4px 0 0 0;
    font-size: 13px;
}
.lang-switch_btn {
  width: 100%;
  text-align: center;
  /*border: solid 1px #454545;*/
  display: none;
  margin: 4px 0 0 0;
}

@media screen and (max-width: 635px) {
.lang-switch {
  display: none;
}
}
  .menu-content ul li .en_link{
    display: block;
    font-size: 1.5rem;
    color:#FFF;
  }
  .menu-content ul li .en_link a {
    font-size: 1.5rem;
}
  .menu-content ul li .en_link a.hidden {
    display: none;
}