@charset "utf-8";

:root {
  --base-font-gothic: "Zen Maru Gothic","游ゴシック体",YuGothic,"游ゴシック","Yu Gothic","メイリオ",serif;
  --base-font-gothic02: "游ゴシック体",YuGothic,"游ゴシック","Yu Gothic","メイリオ",sans-serif;
  --base-font-min: "Zen Old Mincho", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  --base-font-min02: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  --base-font-en: "EB Garamond", serif;/*400 to 800*/
  --base-font-weight: 500;
  --base-txt-black: #1c1c1c;
}

body {
  min-width: 1120px;
  min-height: 100%;
  background-color: #fff;
  font-family: var(--base-font-gothic);
  font-weight: var(--base-font-weight);
  color: var(--base-txt-black);
}
@media all and (max-width: 750px){
  body {
    min-width: 100%;
    padding-right: 0;
  }
}

body:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -3;
  width: 100%;
  height: 100vh;
  background-image: url('./../images/common/mark.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto auto;
  opacity: 0.1;
}
@media all and (max-width: 750px){
  body:before {
    background-size: 60vw auto;
  }
}

#container {
  position: relative;
  overflow: hidden;
}

#main {
  min-height: 78vh;
}
@media all and (max-width: 750px){
  #main {
    min-height: auto;/*73vh;*/
  }
}

.boxContent {
}
@media all and (max-width: 750px){
  .boxContent {
  }
}

.boxLayoutBaseIn {
  /*padding-bottom: 7em;*/
}
@media all and (max-width: 750px){
  .boxLayoutBaseIn {
    /*padding-bottom: 2.5em;*/
  }
}


/***** Header *****/
.boxHeader {
  position: fixed;
  z-index: 1002;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 1%;
}
html.typeScroll .boxHeader {
  background-color: rgba(254,254,254,0.8);
}
@media all and (max-width: 750px){
  .boxHeader {
    height: auto;
  }
}

.boxHeader01 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  height: 80px;
}
@media all and (max-width: 750px){
  .boxHeader01 {
    height: 16.7vw;
  }
}

.boxHeader01L .logo01Header {
  width: 300px;
}
@media all and (max-width: 750px){
  .boxHeader01L .logo01Header {
    position: absolute;
    top: 4.0vw;
    left: 1.0vw;
    width: 48vw;
  }
}

.boxHeader01R {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
}
@media all and (max-width: 750px){
  .boxHeader01R {
    /*display: none;*/
  }
}

.boxHeader01R .boxHeaderTotalPrice {
  margin-right: 2.0em;
}
@media all and (max-width: 750px){
  .boxHeader01R .boxHeaderTotalPrice {
    margin-right: 0.5em;
  }
}

.boxHeader01R .dlHeaderTotalPrice {
  font-size: 0.9rem;
  color: #fff;
}
html.typeScroll .boxHeader01R .dlHeaderTotalPrice {
  color: inherit;
}
@media all and (max-width: 750px){
  .boxHeader01R .dlHeaderTotalPrice {
    font-size: 0.65rem;
  }
}

.boxHeader01R .ulHeaderMenu01 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
}

.boxHeader01R .ulHeaderMenu01 > li {
  position: relative;
  z-index: 2;
  margin-left: 0.67em;
}
@media all and (max-width: 750px){
  .boxHeader01R .ulHeaderMenu01 > li {
    margin-left: 0.5em;
  }
}

.boxHeader01R .ulHeaderMenu01 > li a {
  overflow: hidden;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 45px;
}
.boxHeader01R .ulHeaderMenu01 > li a.typeInstagram {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.boxHeader01R .ulHeaderMenu01 > li a.typeLine {
  background-color: #00B900;
}
.boxHeader01R .ulHeaderMenu01 > li a.typeHotpepper {
  background-color: #af2d5b;
}
@media all and (max-width: 750px){
  .boxHeader01R .ulHeaderMenu01 > li a {
    width: 8vw;
    height: 8vw;
    border-radius: 8vw;
  }
}

.boxHeader01R .ulHeaderMenu01 > li a:before {
  padding-top: 0.01em;
  font-family: "Font Awesome 5 Brands";
  font-size: 2.2rem;
  color: #fff;
}
.boxHeader01R .ulHeaderMenu01 > li a.typeInstagram:before {
  content: "\f16d";
}
.boxHeader01R .ulHeaderMenu01 > li a.typeLine:before {
  content: "\f3c0";
}
.boxHeader01R .ulHeaderMenu01 > li a.typeHotpepper:before {
  content: "\f073";
  padding-top: 0;
  padding-left: 0.02em;
  font-family: "Font Awesome 5 Free";
  font-size: 2.1rem;
}
@media all and (max-width: 750px){
  .boxHeader01R .ulHeaderMenu01 > li a:before {
    padding-top: 0.05em;
    font-size: 1.35rem;
  }
  .boxHeader01R .ulHeaderMenu01 > li a.typeHotpepper:before {
    font-size: 1.2rem;
  }
}

/***** Hmb Menu *****/
.btnHmbMenu {
  display: none;
  position: fixed;
  z-index: 1002;
  top: 0;
  right: 260px;
  cursor: pointer;
}
@media all and (max-width: 750px){
  .btnHmbMenu {
    top: 4vw;
    right: 4vw;
    width: 10vw;
    display: block;
  }
}

.btnHmbMenu.typeCss01 {
  position: relative;
  display: -webkit-flex;
  display: flex;
  display: none;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #ddd;
}
@media all and (max-width: 1350px){
  .btnHmbMenu.typeCss01 {
    /*
    display: -webkit-flex;
    display: flex;*/
  }
}
@media all and (max-width: 750px){
  .btnHmbMenu.typeCss01 {
    position: fixed;
    top: 5vw;
    right: 4vw;
    display: -webkit-flex;
    display: flex;
    width: 8.5vw;
    height: 6vw;
    background-color: transparent;
  }
}

.btnHmbMenu.typeCss01 .btnHmbMenuIn {
  position: relative;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
@media all and (max-width: 750px){
  .btnHmbMenu.typeCss01 .btnHmbMenuIn {
    width: 100%;
    height: 100%;
  }
}

.btnHmbMenu.typeCss01 .btnHmbMenuIn > span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 3px;
  transition: all .4s;
}
@media all and (max-width: 750px){
  .btnHmbMenu.typeCss01 .btnHmbMenuIn > span {
    height: 0.8vw;
    border-radius: 0.8vw;
  }
}

.btnHmbMenu.typeCss01 .btnHmbMenuIn > span:nth-of-type(1) {
  top: 0;
}
.btnHmbMenu.typeCss01 .btnHmbMenuIn > span:nth-of-type(2) {
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.btnHmbMenu.typeCss01 .btnHmbMenuIn > span:nth-of-type(3) {
  bottom: 0;
}

.btnHmbMenu.typeCss01.statusOpen .btnHmbMenuIn > span:nth-of-type(1) {
  transform: translateY(11.1px) rotate(-45deg);
}
.btnHmbMenu.typeCss01.statusOpen .btnHmbMenuIn > span:nth-of-type(2) {
  opacity: 0;
}
.btnHmbMenu.typeCss01.statusOpen  .btnHmbMenuIn > span:nth-of-type(3) {
  transform: translateY(-11.1px) rotate(45deg);
}
@media all and (max-width: 750px){
  .btnHmbMenu.typeCss01.statusOpen .btnHmbMenuIn > span:nth-of-type(1) {
    transform: translateY(2.6vw) rotate(-45deg);
    transform: translateY(calc(3.0vw - 0.8vw / 2)) rotate(-45deg);
  }
  .btnHmbMenu.typeCss01.statusOpen .btnHmbMenuIn > span:nth-of-type(3) {
    transform: translateY(-2.6vw) rotate(45deg);
    transform: translateY(calc(-3.0vw + 0.8vw / 2)) rotate(45deg);
  }
}

.boxHmbMenu {
  display: none;
  overflow-y: auto;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 5% 0 5%;
  background-color: rgba(0,0,0,0.7);
  text-align: center;
  color: #fff;
}
@media all and (max-width: 750px){
  .boxHmbMenu {
    padding: 16.7vw 0 5vw 0;
    text-align: left;
  }
}

.ulHmbMenu01 > li {
  padding: 1.0em 0;
  font-size: 1.5rem;
}
@media all and (max-width: 750px){
  .ulHmbMenu01 > li {
    width: 100%;
    padding: 3vw 0 3vw 4vw;
    font-size: 1.1rem;
  }
  .ulHmbMenu01 > li:first-child {
    padding-top: 7vw;
  }
}

.ulHmbMenu01 > li:not(:last-child):after {
  content: '-';
  margin: 0 0.8em;
}
@media all and (max-width: 750px){
  .ulHmbMenu01 > li:not(:last-child):after {
    content: none;
  }
}

.boxHmbMenuFixedBottom {
  position: fixed;
  left: 0;
  bottom: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
}

.boxHmbMenuFixedBottom a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 50%;
  height: 17.5vw;
}


@media all and (max-width: 750px){
  .boxHmbMenuSns {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    margin-top: 2em;
  }
}
@media all and (max-width: 750px){
  .boxHmbMenuSns a {
    margin: 0 0.5em;
  }
}

@media all and (max-width: 750px){
  .boxHmbMenuSns a img {
    width: 9.5vw;
  }
}



/*##### Mv #####*/
.boxMvWrap {
  position: relative;
  padding-top: 344px;
  background-color: #000;
  background-image: url('./../images/base/base-mv.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
body.home .boxMvWrap {
  background-image: url('./../images/index/index-mv.jpg');
}
@media all and (max-width: 750px){
  .boxMvWrap {
    padding-top: 46.5%;
    background-size: cover;
  }
}

.boxMvWrap:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.boxMv {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 4em;
}

.ttlMv {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  color: #fff;
}

.ttlMv .ttlParent {
  margin-top: -1.9em;
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
  font-size: 1.75rem;
  font-weight: 700;
}
@media all and (max-width: 750px){
  .ttlMv .ttlParent {
    font-size: 1.1rem;
  }
}

.ttlMv .ttlJa {
  margin-bottom: 0.15em;
  letter-spacing: 0.15em;
  font-family: var(--base-font-min);
  font-size: 1.714283rem;
  font-weight: 400;
}
@media all and (max-width: 750px){
  .ttlMv .ttlJa {
    font-size: 1.4rem;
  }
}

.ttlMv .ttlEn {
  letter-spacing: 0.05em;
  font-family: var(--base-font-en);
  font-size: 1.14286rem;
  font-weight: 300;
}
@media all and (max-width: 750px){
  .ttlMv .ttlEn {
    /*
    font-size: 2.5rem;*/
  }
}

.boxMvImg {
  overflow: hidden;
  position: absolute;
  right: 0;
  bottom: -100px;
  width: 60.7%;
  height: 466px;
}

.boxMvImg .imgMv {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  /*opacity: 0.7;*/
}



/*##### Footer #####*/
.boxFooter01 {
  margin-bottom: 2.0em;
  text-align: center;
}

.boxFooter01 .ttl01 {
  margin-bottom: 1.4em;
}

.boxFooter01 .linkBaseTelno {
  letter-spacing: 0.1em;
  font-family: var(--base-font-min);
  font-size: 2.45rem;
  color: #483c2f;
}
@media all and (max-width: 750px){
  .boxFooter01 .linkBaseTelno {
    font-size: 1.8rem;
  }
}

.boxFooter01 .linkBaseTelno:before {
  content: "\f098";
  margin-right: 0.15em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.boxFooter01 .boxBusinessTime {
  margin-top: 0.5em;
}

.boxFooter01 .boxBusinessTime .dl01 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}
@media all and (max-width: 750px){
  .boxFooter01 .boxBusinessTime .dl01 {
    font-size: 1.0rem;
  }
}

.boxFooter01 .boxBusinessTime .dl01 > dt {
  margin-right: 1.0em;
}
@media all and (max-width: 750px){
  .boxFooter01 .boxBusinessTime .dl01 > dt {
    margin-right: 0.6em;
  }
}

.boxCopyrightWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 6.0em;
  background-color: #fff;
}
@media all and (max-width: 750px){
  .boxCopyrightWrap {
    height: 5.0em;
  }
}

.boxCopyright {
  text-align: center;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}
@media all and (max-width: 750px){
  .boxCopyright {
    letter-spacing: normal;
    font-size: 0.8rem;
  }
}

@media all and (max-width: 750px){
  .boxCopyright .markCopy {
    font-family: Verdana, Roboto, "Droid Sans";
  }
}


/*##### Base Page #####*/
.boxPageWrap {
  padding: 5.0em 0 8.0em 0;
}
@media all and (max-width: 750px){
  .boxPageWrap {
    padding: 2.0em 0 2.5em 0;
  }
}

.boxPage01 {
  padding-bottom: 4.8em;
}
@media all and (max-width: 750px){
  .boxPage01 {
    padding-top: 2.0em;
    padding-bottom: 2.5em;
  }
}

.ttlBasePageH1 {
  margin-bottom: 0.5em;
  letter-spacing: 0.03em;
  font-size: 2.57rem;
}
@media all and (max-width: 750px){
  .ttlBasePageH1 {
    font-size: 2.133rem;
  }
}


/*##### Common Contents #####*/
