@charset "UTF-8";

/* ==========================================================================
   Setting
========================================================================== */
:root {
  --white: #FFF;
  --l-gray: #F0F0F0;
  --gray: #C3C3C3;
  --gray2: #DBDBDB;
  --d-gray: #A0A0A0;
  --dd-gray: #444;
  --black: #313131;
  --border1: #EDE7E2;
  --color1: #9D826C;
  --color2: #C9B7A8;
  --color3: #E5DED8;
  --color4: rgba(201,183,168,.2);
  --red: #dd301d;
  --blue: #236fc1;

  --font1: 'Oswald', "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
  --font2: 'Bon Vivant Serif', "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  --mincho: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  --gothic: "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
}

/* ==========================================================================
   Loading
========================================================================== */
body #container::before {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--l-gray);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 105;
  transition: 1s cubic-bezier(.39, .575, .565, 1);
}
body.loaded #container::before {
  opacity: 0;
  pointer-events: none;
}

/*  Animation
================ */
.iv { opacity: 0; }

/* ==========================================================================
   Base
========================================================================== */
html {
  font-family: var(--gothic);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}


body {
  font-size: 3.6vw;
  line-height: 2;
  letter-spacing: 0.02em;
  color: var(--black);
}
@media (min-width: 375px) {
  body { font-size: calc(.813em + .15vw); }
}
@media (min-width: 576px) {
  body { font-size: calc(.688em + .15vw); }
}
@media (min-width: 1200px) {
  body { font-size: .813em; }
}
@media (min-width: 1440px) {
  body { font-size: .938em; }
}

#container {
  width: 100%;
  overflow: hidden;
}


.over-right {
  margin-right: calc(((100vw - 100%)/2)*-1);
}
.over-left {
  margin-left: calc(((100vw - 100%)/2)*-1);
}

/* ==========================================================================
   Header
========================================================================== */
#siteHeader {
  color: var(--white);
  height: 5em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background .4s, color .4s, height .4s;
}
#siteHeader::before {
  content: '';
  display: block;
  background: var(--white);
  color: var(--white);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(0,-102%,0);
  transition: transform .4s;
}
body:not(.gNavOpen) #siteHeader.nocover {
  color: var(--black);
}
body:not(.gNavOpen) #siteHeader.is-fixed {
  color: var(--black);
}
body:not(.gNavOpen) #siteHeader.is-fixed::before {
  transform: translate3d(0,0,0);
}

.inner-header {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; }

#logo {
  font-size: 1em;
  margin: 0;
  flex: 0 1 10em;
  max-width: 10em;
  margin: 0 5% 0;
  position: relative;
  z-index: 999;
}
#logo .logo__inner {
  display: block;
  color: inherit;
  position: relative;
}
#logo .logo__inner img,
#logo .logo__inner svg {
  width: 100%;
  height: auto;
  max-height: 5em;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}
@media (min-width: 768px) {
  #logo {
    flex: 0 0 11em;
    max-width: 11em;
  }
}
@media (min-width: 1200px) {
  #siteHeader {
    height: 7.5em;
  }
  #siteHeader.is-fixed {
    height: 5em;
  }
  #logo {
    flex: 0 0 12.615em;
    max-width: 12.615em;
    transition: transform .3s;
  }
  #siteHeader.is-fixed #logo {
    transform: scale(0.8);
  }
}



#siteHeader .icon-links {
  height: 5em;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: calc(5vw - 17px + 5em);
  z-index: 2;
  transition: top .6s;
}
#siteHeader .icon-links a {
  display: block;
  padding: .5em;
  transition: color .1s;
}
#siteHeader .icon-links a svg {
  fill: currentColor;
  vertical-align: middle;
}
@media (min-width: 1200px){
  #siteHeader .icon-links {
    top: calc((115px - 5em)/2);
    margin-right: 1em;
  }
  #siteHeader.is-fixed .icon-links {
    top: calc((80px - 5em)/2);
  }
  #siteHeader .icon-links a {
    padding: 1em;
  }
}


.sns-links {
  list-style-type: none;
  display: flex;
  align-items: center;
}
.sns-links li:nth-of-type(n+2) {
  margin-left: 1em;
}
.sns-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.75em;
  height: 2.75em;
  border: 1px solid currentColor;
  border-radius: 100%;
  transition: color .1s;
}
.sns-links a svg {
  width: 1.5em;
  height: 1.5em;
  fill: currentColor;
  vertical-align: middle;
}

#siteHeader .sns-links {
  position: absolute;
  right: calc(5vw - 17px + 5em);
}
@media (min-width: 768px){
  #siteHeader .sns-links {
    margin-right: 1em;
  }
}

/* ==========================================================================
   Global Navigation
========================================================================== */
nav a {
  display: block;
  text-decoration: none; }
nav ul {
  border-bottom: 0;
  margin: 0; }
nav ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
  line-height: 1.25;
}
nav ul li ul.sub-menu li a,
nav ul li ul.children li a {
  padding-left: 30px; }
nav ul li a span,
nav ul li a em {
  display: block;
  font-style: normal; }

.gNav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: rgba(0,0,0,0.85);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;

  display: none; 
}
.gNav__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 6em 5% 2em;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--white);
  position: absolute;
  top: 0;
  right: 0;
    
  opacity: 0;
  transition: all 1s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
.gNav .navBar {
  display: flex;
  flex-direction: column;
  margin: auto;
  position: relative;
}
.gNav .navBar > ul {
  display: block;
  min-width: 24em;
  padding: 0 1.5em;
  opacity: 0;
  transform: translate3d(1em,0,0);
  transition: transform 1.6s .2s cubic-bezier(0.190, 1.000, 0.220, 1.000), opacity 1s .2s;
}
.gNav .navBar > ul > li {
  margin: 0 0 1.25em;
}
.gNav .navBar > ul > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gNav .navBar ul li a {
  padding: 0;
  font-size: .846em;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-align: right;
}
.gNav .navBar ul li a:hover {
  opacity: .5;
}
.gNav .navBar ul li a span {
  display: block;
  text-align: left;
  font-family: var(--font1);
  font-size: 1.364em;
  letter-spacing: 0.1em;
  display: block;
  margin-right: .75em;
}

@media(min-width:576px){
  .gNav .navBar ul li a {
    font-size: .813em;
  }
}
@media(min-width:768px){
  .gNav .navBar {
    width: min(90vw, 64em);
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
  }
  .gNav .navBar ul li a {
    font-size: 1em;
  }
  .gNav .navBar > ul {
    padding: 0;
    min-width: initial;
  }
  .gNav .navBar > ul > li {
    margin: 0 0 1.75em;
  }
  .gNav .navBar > ul > li > a {
    justify-content: flex-start;
  }
}
@media(min-width:1200px){
  .gNav .navBar ul li a span {
    font-size: 1.538em;
  }
}


/* Sub Navigation */
.gNav .navBar .sub-nav {
  margin: 1.5em -.5em 0;
}
.gNav .navBar .sub-nav li {
  padding: 0 .5em;
  margin-bottom: .5em;
}
.gNav .navBar .sub-nav li a {
  display: block;
  width: 100%;
  font-size: 1.077em;
  text-align: center;
  padding: 1em;
  border: 1px solid var(--d-gray);
  background: transparent;
  color: var(--white);
}
.gNav .navBar .sub-nav li a:hover {
  opacity: 1;
  background: rgba(255,255,255,0.2);
}
@media(min-width:768px){
  .gNav .navBar > ul.sub-nav {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .gNav .navBar .sub-nav li a {
    width: 20em;
    padding: 1.125em;
  }
}


/* OPEN */
.gNav.on .gNav__inner{
  opacity: 1;
}
.gNav.on .navBar > ul {
  opacity: 1;
  transform: translate3d(0,0,0);
}

/* Nav Btn */
.nav-btn {
  background: transparent;
  color: currentColor;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5em;
  height: 5em;
  position: absolute;
  top: 0;
  right: calc(5vw - 17px);
  z-index: 2;
  transition: top .6s;
}
.nav-btn i {
  display: block;
  background: currentColor;
  height: 2px;
  position: absolute;
  right: 1.25em;
  left: 1.25em;
  margin-top: -1px;
  transition: transform .3s, background .4s;
}
.nav-btn i:nth-of-type(1){
  top: 50%;
}
.nav-btn i:nth-of-type(2){
  top: 35%;
  transition: top .3s .35s, transform .3s .1s;
}
.nav-btn i:nth-of-type(3){
  top: 65%;
  transition: top .3s .35s, transform .3s .1s;
}
.nav-btn.on i:nth-of-type(1){
  transform: scaleX(0);
}
.nav-btn.on i:nth-of-type(2){
  top: 50%;
  transform: rotate(30deg);
  transition: top .3s .1s, transform .3s .35s;
}
.nav-btn.on i:nth-of-type(3){
  top: 50%;
  transform: rotate(-30deg);
  transition: top .3s .1s, transform .3s .35s;
}
@media(min-width: 1200px){
  .nav-btn {
    top: calc((97.5px - 5em)/2);
  }
  #siteHeader.is-fixed .nav-btn {
    top: 0;
  }
}
@media(min-width: 1440px){
  .nav-btn {
    top: calc((112.5px - 5em)/2);
  }
}

/* ==========================================================================
   Widget - gallery
========================================================================== */
#widget-gallery {
  text-align: center;
}
#widget-gallery .section__header {
  margin-top: 2em;
  margin-bottom: 2.5em;
}
#widget-gallery .section__header .en_ttl {
  line-height: 1;
}
@media(min-width: 576px){
  #widget-gallery .grid-item {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}


/* ==========================================================================
   Other
========================================================================== */
#widget-gallery + #other {
  padding-top: 0;
  overflow: hidden;
}


#other {
  text-align: center;
}
#other .section__header {
  margin-top: 2em;
  margin-bottom: 2.5em;
}
#other .section__header .en_ttl {
  line-height: 1;
}
#other ul.other-content {
  list-style-type: none;
}
#other ul.other-content li {
  margin-bottom: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: grayscale(100%);
}
#other ul.other-content li a {
  background-color: rgba(0,0,0,.64);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
  height: 35vw;
}
#other ul.other-content li a:hover {
  background-color: rgba(0,0,0,.74);
}
#other ul.other-content h4 {
  font-family: var(--font1);
  line-height: 1.5;
  letter-spacing: .06em;
  position: relative;
}
#other ul.other-content li a::before {
  content: '';
  width: 4.5em;
  height: 1px;
  background: var(--d-gray);
  position: absolute;
  top: 50%;
  right: 10vw;
}
#other ul.other-content li a::after {
  content: '';
  width: .5em;
  height: .5em;
  border-radius: 100%;
  background: var(--d-gray);
  position: absolute;
  top: 50%;
  right: 10vw;
  margin-top: -.25em;
}
@media(min-width: 576px) and (max-width: 991px){
  #other ul.other-content li a::before,
  #other ul.other-content li a::after {
    display: none;
  }
}
@media(min-width: 992px){
  #other ul.other-content li a::before {
    width: 5.25em;
    right: 3vw;
  }
  #other ul.other-content li a::after {
    right: 3vw;
  }
}
@media(min-width: 576px){
  #other ul.other-content li:nth-of-type(2) {
    border-right: 1px solid var(--l-gray);
    border-left: 1px solid var(--l-gray);
  }
  #other ul.other-content li a {
    height: 29.5vw;
  }
}

#other ul.other-content li.about {
  background-image: url(../img/other/about.jpg);
  background-position: 50% 39.5%;
}
#other ul.other-content li.studiophoto {
  background-image: url(../img/other/studiophoto.jpg);
  background-position: 50% 27%;
}
#other ul.other-content li.locationphoto {
  background-image: url(../img/other/locationphoto.jpg);
}
#other ul.other-content li.costume {
  background-image: url(../img/other/costume.jpg);
  background-position: 50% 45%;
}
@media(min-width: 576px){
  #other ul.other-content li.about {
    background-position: 50% 62%;
  }
}

/* ==========================================================================
   Reservation
========================================================================== */
#reservation {
  text-align: center;
}
#reservation .ttl {
  font-size: 4.14em;
  color: var(--color2);
}
#reservation .font2 {
  line-height: 1.05;
}
#reservation h6 {
  margin-bottom: 1em;
}
#reservation .web {
  margin-top: 2em;
}
#reservation .tel {
  margin-top: 2em;
}
#reservation .tel .num {
  margin: .25em 0;
}
@media(max-width: 1199px){
  #reservation .web .btn {
    margin-top: .75em;
  }
}
@media(min-width: 768px){
  #reservation h6 {
    margin-bottom: 1.5em;
  }
  #reservation .web {
    border-right: 1px solid var(--border1);
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right: 5%;
  }
  #reservation .tel {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
@media(min-width: 1200px){
  #reservation .ttl {
    font-size: 5.38em;
  }
  #reservation .web {
    padding-left: 5%;
  }
  #reservation .web .btn {
    padding: 1.35em 1em;
  }
    #reservation h3 {
    padding: 0 0 1em 0;
  }
}


#reservation-fixed {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 888;
  pointer-events: none;
  opacity: 0;
  transform: translateY(50%);
  transition: transform .6s, opacity .6s;
}
#reservation-fixed.is-show {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
#reservation-fixed ul {
  display: flex;
  list-style-type: none;
}
#reservation-fixed ul li a {
  font-size: .846em;
  letter-spacing: 0.06em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
#reservation-fixed ul li a span {
  font-family: var(--font1);
  font-size: 1.364em;
  letter-spacing: .04em;
  margin-bottom: .5em;
}

@media(max-width: 991px){
  #reservation-fixed {
    left: 0;
    background: var(--white);
  }
  #reservation-fixed ul {
    border: 0.5px solid var(--border1);
  }
  #reservation-fixed ul li {
    flex-basis: 100%;
  }
  #reservation-fixed ul li:nth-of-type(1) a {
    background: var(--color1);
    color: var(--white);
  }
  #reservation-fixed ul li:nth-of-type(2) a {
    background: var(--dd-gray);
    color: var(--white);
  }
  #reservation-fixed ul li:nth-of-type(3) a {
  }
  #reservation-fixed ul li a {
    height: 4rem;
  }
  #reservation-fixed ul li a:hover {
    background: var(--border1);
  }
}


@media(min-width: 992px){
  #reservation-fixed {
    right: 2%;
    bottom: 1.5em;
  }
  #reservation-fixed ul {
    flex-direction: row-reverse;
  }
  #reservation-fixed ul li {
    margin-left: 8%;
    margin-bottom: .5em;
  }
  #reservation-fixed ul li a {
    width: 9.5em;
    height: 9.5em;
    border-radius: 100%;
    color: var(--white);
  }
  #reservation-fixed ul li a::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: var(--color1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: .2s;
  }
  #reservation-fixed ul li:nth-of-type(2) a::before {
    background: var(--dd-gray);
  }
  #reservation-fixed ul li a:hover::before {
    transform: scale(1.1);
  }
  #reservation-fixed ul li a span {
    font-size: 1.615em;
    margin-bottom: .25em;
  }
}
@media(min-width: 1200px){
  #reservation-fixed ul li a {
    width: 10.9em;
    height: 10.9em;
  }
  #reservation-fixed ul li a span {
    font-size: 1.818em;
    margin-bottom: .5em;
  }
}


/* ==========================================================================
   Footer
========================================================================== */
#siteFooter {
  clear: both;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  padding: 4.25em 0 3em;
}
#siteFooter a:hover {
  opacity: .5;
}
#siteFooter .footer-info #footerLogo {
  margin-bottom: 2.25em;
}
#siteFooter .logo__inner {
  display: inline-block;
  color: inherit;
}
#siteFooter .footer-info .address {
  font-size: .929em;
  margin-bottom: 1.25em;
}
#siteFooter .footer-info .address span {
  display: inline-block;
}
#siteFooter .footer-info .sns-links {
  margin-bottom: 2.75em;
}

#siteFooter .fNav .navBar ul li a {
  padding: .5em 0;
}
#siteFooter .fNav .navBar ul[data-title] {
  margin-top: 2em;
  position: relative;
}
#siteFooter .fNav .navBar ul[data-title]::before {
  content: attr(data-title);
  display: block;
  line-height: 2.25;
  margin-bottom: .125em;
}
#siteFooter .fNav .navBar ul[data-title]::after {
  content: '';
  display: block;
  width: calc(100% - 6em);
  height: 1px;
  background: var(--d-gray);
  position: absolute;
  top: 1.125em;
  right: 0;
}



#siteFooter .footer-bottom {
  margin-top: 2.5em;
  background: var(--black);
  color: var(--white);
  font-size: .923em;
  font-family: var(--font1);
}
#siteFooter .footer-bottom__inner {
}
#siteFooter .footer-bottom #footerLogo {
  width: 164px;
  margin-bottom: 1em;
}
#siteFooter .footer-bottom .navBar ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -1em;
  padding: 1em 0;
}
#siteFooter .footer-bottom .navBar ul li {
  position: relative;
}
#siteFooter .footer-bottom .navBar ul li:not(:last-child)::after {
  content: '';
  display: block;
  width: 1px;
  height: .8em;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#siteFooter .footer-bottom .navBar ul li a {
  padding: .75em 1em;
}
#siteFooter .copyright {
  text-align: center;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  text-transform: uppercase;
}

@media(max-width: 991px){
  #siteFooter .footer-info .sns-links {
    justify-content: center;
  }
}
@media(min-width: 576px){
  #siteFooter .fNav .navBar ul[data-title] {
    margin-top: 0;
  }
  #siteFooter .fNav .navBar ul[data-title]::after {
    display: none;
  }
}
@media(min-width: 768px){
  #siteFooter .copyright {
    text-align: right;
  }
}
@media(min-width: 992px){
  #siteFooter .fNav .navBar {
    flex-wrap: nowrap;
  }
  #siteFooter .fNav .navBar > ul {
    margin-left: 3em;
  }
}
@media(min-width: 1200px){
  #siteFooter .footer-info #footerLogo {
    padding-top: .5em;
  }
}

/* ==========================================================================
   PC Footer Navigation
========================================================================== */
@media(min-width: 1200px){
  .fNav .navBar > ul {
    flex-wrap: nowrap;
  }
  .fNav .navBar > ul > li {
    flex-basis: 100%;
  }
  .fNav .sub-menu ul li {
    flex: 0 0 100%;
  }
}