@charset "UTF-8";
/*------------------------
	Font
------------------------*/
/*==============================================
	Reset
==============================================*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 10px;
}

body, div, pre, p, blockquote,
form, fieldset, input, textarea, select, option,
h1, h2, h3, h4, h5, h6,
dl, dt, dd,
ul, ol, li,
table, th, td,
embed, object,
figure {
  margin: 0;
  padding: 0;
  text-align: justify;
  -webkit-text-size-adjust: 100%;
  font-family: var(--fnt-min);
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

table, th, td,
img {
  border: 0;
}

img, input {
  vertical-align: top;
}

video,
img {
  max-width: 100%;
  height: auto;
}

li {
  list-style: none;
}

a {
  outline: 0;
}

em {
  font-style: normal;
}

header, footer, nav, main,
article, section, aside, iframe,
figure, figucaption, picture,
small {
  display: block;
}

input[type=button], input[type=submit] {
  background: none;
  border: none;
  -webkit-appearance: none;
}

input[type=radio],
input[type=checkbox] {
  vertical-align: middle;
}

/*------------------------
	Font
------------------------*/
:root {
  --col-text: #fff;
  --col-text-d: #4A3D38;
  --col-text-d-hlt: #736965;
  --col-bg-main: #C6BEAF;
  --col-hlt: #A7936B;
  --col-link: #8F8784;
  --col-bd: rgba(255, 255, 255, .3);
  --fnt-min: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E","ＭＳ Ｐ明朝", "MS PMincho", serif;
  --fnt-go: "游ゴシック体", "Yu Gothic", YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Noto Sans Japanese","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
}

body {
  opacity: 0;
}
body:not(#index) {
  background: var(--col-bg-main);
}
body:not(#index) * {
  color: var(--col-text);
}
body#index * {
  color: var(--col-text-d);
}

body,
input[type=submit], button {
  font-family: var(--fnt-min);
}

#contents {
  min-height: 100vh;
}

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

a {
  text-decoration: none;
}

::-moz-selection {
  background: rgba(0, 0, 0, 0.2);
}

::selection {
  background: rgba(0, 0, 0, 0.2);
}

::-moz-selection {
  background: rgba(0, 0, 0, 0.2);
}

a.linkarea {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  font-size: 0;
  text-indent: -9999px;
  overflow: visible;
  z-index: 999;
}

a.blank::after {
  content: "\f35d";
  margin-left: 0.5em;
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
  font-weight: 900;
  color: #999;
}

.snslist li {
  line-height: 1;
}
.snslist li a {
  position: relative;
  display: block;
  line-height: 1;
  font-size: 0;
}
.snslist li a::before {
  font: var(--fa-font-brands);
  line-height: 1;
}
.snslist li.fb a::before {
  content: "\f09a";
}
.snslist li.insta a::before {
  content: "\f16d";
}

#siteheader {
  z-index: 999;
}

.slick-disabled {
  opacity: 0;
}

.slidepager li {
  display: inline-block;
  margin: 0 5px;
  line-height: 1;
}
.slidepager li button {
  width: 7px;
  height: 7px;
  padding: 0;
  background: #fff;
  border: none;
  border-radius: 50%;
  text-indent: -9999px;
  font-size: 0;
}
.slidepager li.slick-active button {
  background: #333;
}

@-webkit-keyframes rotate-anime {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate-anime {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate-anime-posxy {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotate-anime-posxy {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (min-width: 835px) {
  /*------------------------
  	Font
  ------------------------*/
  body, div, pre, p, blockquote,
  form, fieldset, input, textarea, select, option,
  h1, h2, h3, h4, h5, h6,
  dl, dt, dd,
  ul, ol, li,
  table, th, td,
  embed, object,
  figure,
  small {
    font-size: 1.4rem;
  }
  pre, p, blockquote, textarea, select, option,
  h1, h2, h3, h4, h5, h6,
  dt, dd, li,
  th, td {
    line-height: 2;
  }
  a,
  .linkarea_parent {
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
  }
  a:hover,
  .linkarea_parent:hover {
    opacity: 0.6;
    -webkit-opacity: 0.6;
    -moz-opacity: 0.6;
    filter: alpha(opacity=60);
    -ms-filter: "alpha(opacity=60)";
  }
  .sponly {
    display: none !important;
  }
  .snsnav {
    overflow: hidden;
  }
  .snsnav li {
    line-height: 1;
  }
  .snsnav li a {
    position: relative;
    display: block;
    width: 2rem;
    height: 2rem;
  }
  .snsnav li a::before {
    display: block;
    font-size: 2rem;
    position: absolute;
    left: 50%;
    top: 55%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #siteheader {
    width: 100%;
    height: 140px;
    position: fixed;
    left: 0;
    top: 0;
    padding: 70px 3.5% 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #siteheader .logo {
    max-width: 190px;
    margin-left: 0;
    margin-right: auto;
  }
  body:not(#index) #siteheader .logo img {
    -webkit-filter: invert(100%) sepia(2%) saturate(433%) hue-rotate(256deg) brightness(116%) contrast(100%);
            filter: invert(100%) sepia(2%) saturate(433%) hue-rotate(256deg) brightness(116%) contrast(100%);
  }
  body#index #siteheader .logo img {
    -webkit-filter: invert(41%) sepia(16%) saturate(236%) hue-rotate(331deg) brightness(95%) contrast(84%);
            filter: invert(41%) sepia(16%) saturate(236%) hue-rotate(331deg) brightness(95%) contrast(84%);
  }
  #siteheader #gnav {
    width: 60%;
  }
  #siteheader #gnav .gnavlist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #siteheader #gnav .gnavlist li:not(:first-of-type) {
    margin-left: 50px;
  }
  #siteheader #gnav .gnavlist li a {
    display: block;
    font-family: "Cormorant Infant", serif;
    line-height: 1;
    letter-spacing: 0.1em;
    font-size: 1.6rem;
  }
  #siteheader .snsnav {
    width: 100%;
    margin-top: 0;
  }
  #siteheader .snsnav .snslist {
    margin: 0 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 0 20px;
  }
  #siteheader .snsnav .snslist li a::before {
    font-size: 1.8rem;
  }
  #siteheader .menu {
    display: none;
  }
  #sitefooter .contact {
    width: 90%;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
    line-height: 1;
  }
  #sitefooter .contact em {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
  }
  #sitefooter .contact em img {
    display: block;
    max-width: 190px;
    margin: 0 auto;
  }
  #sitefooter .logo {
    margin-top: 130px;
    padding-top: 60px;
    border-top: 1px solid #fff;
  }
  #sitefooter .logo img {
    display: block;
    width: 90%;
    max-width: 230px;
    margin: 0 auto;
  }
  #copyright {
    margin: 40px 5% 70px;
    text-align: center;
    font-family: "Cormorant Infant", serif;
    line-height: 1;
    letter-spacing: 0.1em;
    font-size: 1.2rem;
  }
  body:not(#index) #backmovie {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
  }
  body:not(#index) #backmovie video {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    max-width: none;
  }
  body#index #sitefooter, body#index > #backmovie {
    display: none;
  }
  #pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50%;
  }
  #pagetop a {
    display: block;
    text-align: center;
    text-decoration: none;
    text-indent: -9999px;
    font-size: 0;
    color: #666;
  }
  #pagetop a::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  #contents {
    padding-bottom: 140px;
  }
  body:not(#index) #contents {
    padding-top: 160px;
  }
  body:not(#index) #pageheader h1, body:not(#index) #pageheader .pagetitle {
    text-align: center;
    line-height: 1;
  }
  body:not(#index) #pageheader h1 img, body:not(#index) #pageheader .pagetitle img {
    display: block;
    margin: 0 auto;
  }
  body:not(#index) #pageheader h1 em, body:not(#index) #pageheader .pagetitle em {
    display: block;
    margin-top: 20px;
  }
}
@media (max-width: 834px) {
  /*------------------------
  	Font
  ------------------------*/
  body.gnavopen {
    overflow: hidden;
  }
  body, div, pre, p, blockquote,
  form, fieldset, input, textarea, select, option,
  h1, h2, h3, h4, h5, h6,
  dl, dt, dd,
  ul, ol, li,
  table, th, td,
  embed, object,
  figure,
  small {
    font-size: 1.3rem;
  }
  pre, p, blockquote, textarea, select, option,
  h1, h2, h3, h4, h5, h6,
  dt, dd, li,
  th, td {
    line-height: 2;
  }
  .pconly {
    display: none !important;
  }
  #siteheader {
    width: 100%;
    height: 85px;
    position: fixed;
    left: 0;
    top: 0;
    padding: 0 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: background 0.5s ease-out;
    transition: background 0.5s ease-out;
  }
  body.gnavopen #siteheader {
    background: #DAD3CB;
  }
  #siteheader .logo {
    margin-left: 0;
    margin-right: auto;
  }
  #siteheader .logo img {
    display: block;
    height: 25px;
  }
  body:not(#index) #siteheader .logo img {
    -webkit-filter: invert(100%) sepia(2%) saturate(433%) hue-rotate(256deg) brightness(116%) contrast(100%);
            filter: invert(100%) sepia(2%) saturate(433%) hue-rotate(256deg) brightness(116%) contrast(100%);
  }
  body#index #siteheader .logo img {
    -webkit-filter: invert(41%) sepia(16%) saturate(236%) hue-rotate(331deg) brightness(95%) contrast(84%);
            filter: invert(41%) sepia(16%) saturate(236%) hue-rotate(331deg) brightness(95%) contrast(84%);
  }
  #siteheader #gnav {
    display: none;
    width: 100%;
    height: calc(100vh - 85px);
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1000;
    background: #DAD3CB;
  }
  #siteheader #gnav .inner {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #siteheader #gnav .inner .gnavlist {
    width: 100%;
    padding: 0 7%;
  }
  #siteheader #gnav .inner .gnavlist li:not(:first-of-type):not(.contact) {
    margin-top: 30px;
  }
  #siteheader #gnav .inner .gnavlist li:not(.contact) a {
    display: block;
    text-align: center;
    font-family: "Cormorant Infant", serif;
    line-height: 1;
    letter-spacing: 0.1em;
    font-size: 2rem;
    color: var(--col-text-d-hlt);
  }
  #siteheader #gnav .inner .gnavlist li.contact {
    margin-top: 50px;
  }
  #siteheader #gnav .inner .gnavlist li.contact a {
    display: block;
    padding: 0 30px;
    border-radius: 28px;
    font-family: "Cormorant Infant", serif;
    line-height: 1;
    letter-spacing: 0.1em;
    font-size: 1.7rem;
    line-height: 56px;
    color: var(--col-text);
    position: relative;
    background: var(--col-link);
    color: var(--col-text);
  }
  #siteheader #gnav .inner .gnavlist li.contact a::before, #siteheader #gnav .inner .gnavlist li.contact a::after {
    content: "";
    display: block;
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  #siteheader #gnav .inner .gnavlist li.contact a::before {
    width: 25px;
    border-top: 1px solid var(--col-text);
  }
  #siteheader #gnav .inner .gnavlist li.contact a::after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--col-text);
  }
  #siteheader .snsnav {
    margin-right: 30px;
  }
  #siteheader .snsnav .snslist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 20px;
  }
  #siteheader .snsnav .snslist li {
    color: var(--col-link);
  }
  #siteheader .snsnav .snslist li a::before {
    font-size: 1.8rem;
  }
  #siteheader .menu {
    width: 35px;
    height: 17px;
    text-indent: -9999px;
    font-size: 0;
    position: relative;
  }
  #siteheader .menu::before, #siteheader .menu::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    -webkit-transition: transform 0.3s ease-out, top 0.3s ease-ou;
    -webkit-transition: top 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: top 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out, top 0.3s ease-out;
    transition: transform 0.3s ease-out, top 0.3s ease-out, -webkit-transform 0.3s ease-out;
  }
  body:not(#index) #siteheader .menu::before, body:not(#index) #siteheader .menu::after {
    border-top: 1px solid var(--col-text);
  }
  body#index #siteheader .menu::before, body#index #siteheader .menu::after {
    border-top: 1px solid var(--col-hlt);
  }
  #siteheader .menu::before {
    top: 0;
  }
  #siteheader .menu::after {
    top: 17px;
  }
  #siteheader .menu.active::before, #siteheader .menu.active::after {
    top: 50%;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  #siteheader .menu.active:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #siteheader .menu.active:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #sitefooter .contact {
    width: 80vw;
    margin: 0 auto;
    text-align: center;
    line-height: 1;
  }
  #sitefooter .contact em {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
  }
  #sitefooter .contact em img {
    display: block;
    max-width: 190px;
    margin: 0 auto;
  }
  #sitefooter .logo {
    margin-top: 70px;
    padding-top: 60px;
    border-top: 1px solid #fff;
  }
  #sitefooter .logo img {
    display: block;
    width: 80%;
    max-width: 230px;
    margin: 0 auto;
  }
  #copyright {
    margin: 40px 5% 60px;
    text-align: center;
    font-family: "Cormorant Infant", serif;
    line-height: 1;
    letter-spacing: 0.1em;
    font-size: 1rem;
  }
  #backmovie {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
  }
  #backmovie video {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    max-width: none;
  }
  body#index #sitefooter, body#index > #backmovie {
    display: none;
  }
  #pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50%;
  }
  #pagetop a {
    display: block;
    text-align: center;
    text-decoration: none;
    text-indent: -9999px;
    font-size: 0;
    color: #666;
  }
  #pagetop a::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  #contents {
    padding-bottom: 100px;
  }
  body:not(#index) #contents {
    padding-top: 160px;
  }
  body:not(#index) #pageheader h1, body:not(#index) #pageheader .pagetitle {
    width: 100%;
    padding: 0 5vw;
    text-align: center;
    line-height: 1;
  }
  body:not(#index) #pageheader h1 em, body:not(#index) #pageheader .pagetitle em {
    display: block;
    margin-top: 20px;
  }
}