@charset "UTF-8";
/* DLIGHT */
.dm{}

:root {
  --font-ja-go: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --font-en-cg: "Cormorant Garamond", serif;
  --font-en-jost: "Jost", sans-serif;
  --font-color-base: #252D32;
  --font-color-catch: #A17244;
  --color-yel: #B4AF73;
  --color-bg-base: #EDE1D3;
  --fs10: calc(10 / 16 * 1rem);
  --fs11: calc(11 / 16 * 1rem);
  --fs12: calc(12 / 16 * 1rem);
  --fs13: calc(13 / 16 * 1rem);
  --fs14: calc(14 / 16 * 1rem);
  --fs15: calc(15 / 16 * 1rem);
  --fs16: calc(16 / 16 * 1rem);
  --fs18: calc(18 / 16 * 1rem);
  --fs20: calc(20 / 16 * 1rem);
  --fs21: calc(21 / 16 * 1rem);
  --fs24: calc(24 / 16 * 1rem);
  --fs25: calc(25 / 16 * 1rem);
  --fs30: calc(30 / 16 * 1rem);
  --fs36: calc(36 / 16 * 1rem);
  --fs42: calc(42 / 16 * 1rem);
}

*,
::after,
::before {
	box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
	line-sizing: normal;
}
body {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--fs15);
  letter-spacing: 0.01em;
  color: var(--font-color-base);
}
[hidden] {
	display: none;
}
h1 {
	font-size: 2rem;
  
}
h2 {
	font-size: 1.5rem;
}
h3 {
	font-size: 1.17rem;
}
h4 {
	font-size: 1rem;
}
h5 {
	font-size: 0.83rem;
}
h6 {
	font-size: 0.67rem;
}
pre {
	white-space: pre-wrap;
}
hr {
	border-style: solid;
	border-width: 1px 0 0;
	color: inherit;
	height: 0;
	overflow: visible;
}
audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
	display: block;
	vertical-align: middle;
	max-width: 100%;
}
audio:not([controls]) {
	display: none;
}
picture {
	display: contents;
}
source {
	display: none;
}
canvas,
img,
svg,
video {
	height: auto;
}
audio {
	width: 100%;
}
img {
  width: 100%;
  height: auto;
  vertical-align:top;
	border-style: none;
}
img[src$=".svg"] {
  filter: blur(0px);
  transform: rotate(0.0001deg)
}
svg {
	overflow: hidden;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
	display: block;
}
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
}

a {
  color: var(--font-color-base);
  text-decoration: none;
  transition: all .8s;
}
a:hover {
  opacity: .7;
}

ul,li {
  list-style: none;
}

.ff-aveni-bold {
  font-family: var(--font-en-aveni-bold);
}
.ff-aveni-demi {
  font-family: var(--font-en-aveni-demi);
}
.ff-aveni-medi {
  font-family: var(--font-en-aveni-medi);
}

.visuallyhidden {
  position:absolute;
  clip:rect(1px, 1px, 1px, 1px);
  -webkit-clip-path:inset(0px 0px 99.9% 99.9%);
  clip-path:inset(0px 0px 99.9% 99.9%);
  overflow:hidden;
  height:1px;
  width:1px;
  padding:0;
  border:0
}

/* ================================================== */
/* SP */
/* ================================================== */
@media ( max-width: 768px ) {

  /* SITE COMMON */
  /* ============================== */
  body {
    font-size: var(--fs14);
  }
  #wrapper {
    min-width: 320px;
    overflow: hidden;
  }
  #wrapper > main {
    position: relative;
    z-index: 1;
  }
  #pageArtic {
    margin: 0 auto 80px;
  }

  .brPc {
    display:  none;
  }
  .brSp {
    display: block;
    font-size: 1px;
  }
  .view-pc {
    display: none;
  }
  .view-sp {
    display: block;
  }

  .ani-fadeup {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 1s;
  }
  .ani-fadeup.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }

  .parallax-img {
    --parallax-y: -50;
  }
  
  /* loading */
  #loader-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 1);
      background-image: url(/assets/img/loading_bg_sp.jpg);
      background-size: cover;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      opacity: 1;
      transition: opacity 1s ease-out;
  }

  #loader-logo {
      width: 100px;
      height: auto;
      opacity: 0;
      transition: opacity 1s ease-in;
  }
  #loader-overlay.hidden {
      opacity: 0;
      pointer-events: none;
  }


  /* SITE HEADER */
  /* ============================== */
  #site-header {
    position: fixed;
    width: 100%;
    color: #FFF;
    z-index: 100;
  }
  body.scrollOn #site-header {
    background-color: rgba(37, 45, 50, .5);
  }
  .sh--logo {
    font-size: var(--fs10);
    line-height: 1;
  }
  .sh--inner {
    width: 100%;
  }
  .sh--contents {
    display: flex;
    justify-content: flex-end;
  }
  
  .hamburger-menu {
    position: relative;
  }
  .hamburger-menu__list {
    background-color: #eeeeee;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 25px;
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s;
    top: 100%;
    width: 100%;
  }
  .hamburger-menu.is-open .hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
  .hamburger-menu__input {
    display: none;
  }
  .hamburger-menu__bg {
    background-color: #000;
    cursor: pointer;
    display: none;
    height: 100vh;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  .hamburger-menu.is-open .hamburger-menu__bg {
    display: block;
  }
  .hamburger-menu__button {
    position: absolute;
    top: -43px;
    left: 15px;
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 32px;
    justify-content: center;
    width: 32px;
  }
  .hamburger-menu__button-mark {
    background-color: #FFF;
    display: block;
    height: 1px;
    transition: 0.3s;
    width: 20px;
  }
  .hamburger-menu.is-open .hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg);
    transform-origin: 0%;
  }
  .hamburger-menu.is-open .hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger-menu.is-open .hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg);
    transform-origin: 0%;
  }
  
  .sh--cont-btn {
    margin-left: 50px;
  }
  .sh--cont-btn ul {
    display: flex;
    justify-content: flex-end;
  }
  .sh--cont-btn ul li:nth-child(1) {
    margin-right: 24px;
  }
  .sh--cont-btn ul li:nth-child(1) img {
    width: 24px;
  }
  .sh--cont-btn ul li:nth-child(1) a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .sh--cont-btn ul li:nth-child(2) {
    height: 48px;
    background-color: #B25238;
  }
  .sh--cont-btn ul li:nth-child(2) a {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 24px;
    color: #FFF;
  }
  
  
  /* PAGE COMMON */
  /* ============================== */
  #page-wrap {
    padding: 0 0 80px;
  }
  
  #pagekv {
    position: relative;
    height: 100vh;
    height: 100svh;
  }
  .pagekv--slider {
    width: 100%;
    height: 100%;
  }
  .pagekv--slider .swiper-slide {
    height: 100%;
  }
  .pagekv--slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  
  .pagekv--logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 180px;
    margin: auto;
    z-index: 5;
    transition: all .8s;
    z-index: 10;
  }
  
  .pagekv-scrolldown {
    position: absolute;
    bottom: 0;
    left: 40px;
    margin: 0 auto;
    
  }
  .pagekv-scrolldown p {
    font-family: var(--font-en-cg);
    font-optical-sizing: auto;
    font-size: 1.4rem;
    font-weight: 600;
    font-style: normal;
    line-height: 1;
    writing-mode: vertical-rl;
    color: #FFF;
  }
  .pagekv-scrolldown .baseline {
    position: relative;
    width: 1px;
    height: 180px;
    background-color: #7d7d7d;
    margin-top: 10px;
    margin-left: 5px;
    overflow: hidden;
  }
  .pagekv-scrolldown .baseline .scrollline {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(to bottom, white 50%, rgba(255, 255, 255, 0) 50%);
    background-position: 0 -180px;
    background-size: 100% 200%;
    animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
  }

  @keyframes scrolldown {
    0% {
      background-position: 0 -180px;
    }
    75% {
      background-position: 0 0;
    }
    100% {
      background-position: 0 180px;
    }
  }
  
  #page-p404 {
    width: 600px;
    margin: auto;
    padding: 300px 0 200px;
    text-align: center;
  }


  /* PAGE TEXT */
  /* ============================== */
  
  
  /* BUTTON */
  /* ============================== */
  .btn-viewmore {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 14px 40px;
    border: 1px solid #252D32;
  }
  .btn-viewmore::after {
    position: absolute;
    top: 0;
    left: 0;
    background: #FFFFFF2E;
    transition: all .3s;
    display: block;
    content: '';
    width: 0%;
    height: 100%;
    z-index: -1;
  }
  .btn-viewmore:hover::after {
    width: 100%;
  }


  /* SITE FOOTER */
  /* ============================== */
  #site-footer {
    position: relative;
    color: #FFF;
    display: flex;
    flex-flow: column;
    background-color: #252D32;
    z-index: 10;
  }
  
  .sf--inner {
    padding: 50px 0 50px;
  }
  
  .sf--logo {
    margin: 0 auto 30px;
  }
  .sf--logo img {
    width: 180px;
    margin: auto;
  }
  
  .sf--contents {
    width: 80%;
    margin: auto;
  }
  .sf--cont-menu {
    margin: 0 auto 30px;
  }
  .sf--cont-menu ul {
    display: flex;
    flex-flow: column;
    column-gap: 50px;
  }
  .sf--cont-menu ul li {
    text-align: center;
  }
  .sf--cont-menu ul li + li {
    margin-top: 10px;
  }
  .sf--cont-menu ul li a {
    display: block;
    padding: 8px 0;
    line-height: 1;
    color: #FFF;
  }
  .sf--cont-menu ul li:nth-child(4) a {
    display: inline-block;
    margin: auto;
  }
  .sf--cont-menu ul li img {
    width: 26px;
  }
  .sf--cont-btn ul li {
    height: 48px;
  }
  .sf--cont-btn ul li:nth-child(1) {
    background-color: #B25238;
    margin-bottom: 20px;
  }
  .sf--cont-btn ul li:nth-child(2) {
    border: 1px solid #FFF;
  }
  .sf--cont-btn ul li:nth-child(1) a,
  .sf--cont-btn ul li:nth-child(2) a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #FFF;
  }


  /* COPYRIGHT */
  .sf--copyright {
    position: relative;
    color: #FFF;
    width: 100%;
    margin: auto 0 0;
    padding: 0 0 20px;
  }
  .sf--copyright p {
    font-size: var(--fs12);
    text-align: center;
  }
  .sf--copyright p span {
    display: inline-block;
  }
  .sf--copyright-arr {
    padding-left: 1em;
  }
  .sf--copyright p a {
    color: #FFF;
  }
  
  /* PAGE TOP */
  #pageTop {
    width: 33px;
    height: 33px;
    position: fixed;
    right: 15px;
    bottom: 15px;
    background: rgba(255,255,255,.3);
    display: none;
    border-radius: 21px;
    z-index: 5001;
    border: 1px solid #866b59;
    border-radius: 50%;
    transition: border .3s;
    z-index: 100;
  }
  #pageTop:hover {
    border: 1px solid #999;
  }
  #site-footer.scWindowIn #pageTop {
    border-color: #FFF;
  }
  #pageTop a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #866b59;
    line-height: 1;
  }
  #site-footer.scWindowIn #pageTop a {
    color: #FFF;
  }

}


/* ================================================== */
/* PC */
/* ================================================== */
@media ( min-width: 769px ) {

  /* SITE COMMON */
  /* ============================== */
  #wrapper {
    min-width: 1200px;
    overflow: hidden;
  }

  .brPc {
    display: block;
    font-size: 1px;
  }
  .brSp {
    display: none;
  }
  .view-pc {
    display: block;
  }
  .view-sp {
    display: none;
  }

  .ani-fadeup {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 1s;
  }
  .ani-fadeup.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }

  .parallax-img {
    --parallax-y: -100;
  }
  
  
  /* loading */
  #loader-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 1);
      background-image: url(/assets/img/loading_bg.jpg);
      background-size: cover;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      opacity: 1;
      transition: opacity 1s ease-out;
  }

  #loader-logo {
      width: 200px;
      height: auto;
      opacity: 0;
      transition: opacity 1s ease-in;
  }
  #loader-overlay.hidden {
      opacity: 0;
      pointer-events: none;
  }
  

  /* SITE HEADER */
  /* ============================== */
  #site-header {
    position: fixed;
    width: 100%;
    color: #FFF;
    z-index: 100;
  }
  body.scrollOn #site-header {
    background-color: rgba(37, 45, 50, .5);
  }
  .sh--logo {
    font-size: var(--fs10);
    line-height: 1;
  }
  .sh--inner {
    width: 100%;
    min-width: 1200px;
  }
  .sh--contents {
    display: flex;
    justify-content: flex-end;
  }
  .sh--cont-menu {
    height: auto;
    padding-top: 16px;
  }
  .sh--cont-menu ul {
    display: flex;
    column-gap: 50px;
  }
  .sh--cont-menu ul li a {
    line-height: 1;
    color: #FFF;
  }
  .sh--cont-menu ul li img {
    width: 26px;
  }
  .sh--cont-btn {
    margin-left: 50px;
  }
  .sh--cont-btn ul {
    display: flex;
    justify-content: flex-end;
  }
  .sh--cont-btn ul li:nth-child(1) {
    margin-right: 30px;
  }
  .sh--cont-btn ul li:nth-child(1) img {
    width: 26px;
  }
  .sh--cont-btn ul li:nth-child(1) a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .sh--cont-btn ul li:nth-child(2) {
    width: 300px;
    height: 60px;
    background-color: #B25238;
  }
  .sh--cont-btn ul li:nth-child(2) a {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-right: 30px;
    color: #FFF;
  }

  
  /* PAGE COMMON */
  /* ============================== */
  #page-wrap {
    padding: 0 0 100px;
  }
  
  #pagekv {
    position: relative;
    height: 100vh;
    height: 100svh;
  }
  .pagekv--slider {
    width: 100%;
    height: 100%;
  }
  .pagekv--slider .swiper-slide {
    height: 100%;
  }
  .pagekv--slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  
  .pagekv--logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 300px;
    margin: auto;
    z-index: 5;
    transition: all .8s;
    z-index: 10;
  }
  
  .pagekv-scrolldown {
    position: absolute;
    bottom: 0;
    left: 40px;
    margin: 0 auto;
    
  }
  .pagekv-scrolldown p {
    font-family: var(--font-en-cg);
    font-optical-sizing: auto;
    font-size: 1.4rem;
    font-weight: 600;
    font-style: normal;
    line-height: 1;
    writing-mode: vertical-rl;
    color: #FFF;
  }
  .pagekv-scrolldown .baseline {
    position: relative;
    width: 1px;
    height: 180px;
    background-color: #7d7d7d;
    margin-top: 10px;
    margin-left: 5px;
    overflow: hidden;
  }
  .pagekv-scrolldown .baseline .scrollline {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(to bottom, white 50%, rgba(255, 255, 255, 0) 50%);
    background-position: 0 -180px;
    background-size: 100% 200%;
    animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
  }

  @keyframes scrolldown {
    0% {
      background-position: 0 -180px;
    }
    75% {
      background-position: 0 0;
    }
    100% {
      background-position: 0 180px;
    }
  }
  
  #page-p404 {
    width: 600px;
    margin: auto;
    padding: 300px 0 200px;
    text-align: center;
  }
  

  /* PAGE TEXT */
  /* ============================== */
  
  
  /* BUTTON */
  /* ============================== */
  .btn-viewmore {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 14px 40px;
    border: 1px solid #252D32;
  }
  .btn-viewmore::after {
    position: absolute;
    top: 0;
    left: 0;
    background: #FFFFFF2E;
    transition: all .3s;
    display: block;
    content: '';
    width: 0%;
    height: 100%;
    z-index: -1;
  }
  .btn-viewmore:hover::after {
    width: 100%;
  }
  
  
  /* SITE FOOTER */
  /* ============================== */
  #site-footer {
    position: relative;
    color: #FFF;
    display: flex;
    flex-flow: column;
    background-color: #252D32;
    z-index: 10;
  }
  
  .sf--inner {
    display: flex;
    justify-content: space-between;
    min-width: 1200px;
    padding: 62px 0 50px 7.8%;
  }
  
  .sf--logo img {
    width: 240px;
    margin: auto;
  }
  
  .sf--contents {
    display: flex;
    justify-content: flex-end;
  }
  .sf--cont-menu {
    padding-top: 16px;
  }
  .sf--cont-menu ul {
    display: flex;
    column-gap: 50px;
  }
  .sf--cont-menu ul li a {
    line-height: 1;
    color: #FFF;
  }
  .sf--cont-menu ul li img {
    width: 26px;
  }
  .sf--cont-btn {
    margin-left: 50px;
  }
  .sf--cont-btn ul li:nth-child(1) {
    width: 300px;
    height: 60px;
    background-color: #B25238;
    margin-bottom: 50px;
  }
  .sf--cont-btn ul li:nth-child(2) {
    width: 215px;
    height: 55px;
    border: 1px solid #FFF;
  }
  .sf--cont-btn ul li:nth-child(1) a,
  .sf--cont-btn ul li:nth-child(2) a {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-right: 30px;
    color: #FFF;
  }
  .sf--cont-btn ul li:nth-child(2) a {
    justify-content: center;
    padding: 0;
  }


  /* COPYRIGHT */
  .sf--copyright {
    position: relative;
    color: #FFF;
    width: 100%;
    margin: auto 0 0;
    padding: 0 0 30px;
  }
  .sf--copyright p {
    font-size: var(--fs12);
    text-align: center;
  }
  .sf--copyright p span {
    display: inline-block;
  }
  .sf--copyright-c {
    padding-right: 1em;
  }
  .sf--copyright-arr {
    padding-left: 1em;
  }
  .sf--copyright p a {
    color: #FFF;
  }
  
  /* PAGE TOP */
  #pageTop {
    width: 33px;
    height: 33px;
    position: fixed;
    right: 15px;
    bottom: 15px;
    background: rgba(255,255,255,.3);
    display: none;
    border-radius: 21px;
    z-index: 5001;
    border: 1px solid #866b59;
    border-radius: 50%;
    transition: border .3s;
    z-index: 100;
  }
  #pageTop:hover {
    border: 1px solid #999;
  }
  #site-footer.scWindowIn #pageTop {
    border-color: #FFF;
  }
  #pageTop a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #866b59;
    line-height: 1;
  }
  #site-footer.scWindowIn #pageTop a {
    color: #FFF;
  }

}

