<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@media only screen and (max-width: 736px) {
  .header {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }

  .header.is-visible {
    opacity: 1;
    visibility: visible;
  }
}

@media only screen and (max-width: 736px) {
  #container {
    padding-top: 0;
  }
}

.navGroup {
  position: absolute;
  right: 40px;
  top: calc(100% + 24px);
  border: none;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 101;
}

.globalNav .navList__link {
  color: #ffffff;
}

.primaryNav .navList__link {
  color: #ffffff;
}

.mainVisualTop {
  width: 100%;
  position: relative;
}

@media only screen and (max-width: 736px) {
  .mainVisualTop {
    width: calc(670vw / 750 * 100);
    margin: 0 0 0 auto;
  }
}

.mainVisualTop__image {
  width: 100%;
}

.mainVisualTop__scroll {
  bottom: 0;
  color: #ffffff;
  font-family: 'Libre Caslon Display', serif;
  font-size: 12px;
  font-weight: 600;
  left: 50%;
  letter-spacing: .32em;
  line-height: 1;
  padding-bottom: 55px;
  position: absolute;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.mainVisualTop__scroll:before {
  -webkit-animation: scrollLine infinite 2s ease forwards;
  animation: scrollLine infinite 2s ease forwards;
  background-color: #ffffff;
  bottom: 0;
  content: '';
  height: 40px;
  left: 50%;
  position: absolute;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  width: 1px;
}

.mainVisualTop .languageBnr {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #c0b79e;
  border-radius: 50%;
  bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  right: 80px;
  width: 80px;
}

@media only screen and (max-width: 736px) {
  .mainVisualTop .languageBnr {
    bottom: calc(10vw / 750 * 100);
    height: calc(80vw / 750 * 100);
    right: calc(5vw / 750 * 100);
    width: calc(80vw / 750 * 100);
  }
}

.mainVisualTop .languageBnr__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mainVisualTop .languageBnr__inner .languageLink {
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: calc(16 / 12);
  padding: 0 6px;
  text-indent: .2em;
}

.mainVisualTop .languageBnr__inner .languageLink.is-active {
  opacity: .4;
  pointer-events: none;
}

@media only screen and (max-width: 736px) {
  .mainVisualTop .languageBnr__inner .languageLink.is-active {
    display: none;
  }
}

.mainVisualTop .languageBnr__inner .languageLink:not(:last-of-type) {
  border-right: 1px solid #ffffff;
}

.mainVisualTop__splogo {
  position: absolute;
  right: calc(100% + 28vw / 750 * 100);
  top: calc(24vw / 750 * 100);
  width: calc(27vw / 750 * 100);
  z-index: 99;
}

.mainSlide {
  overflow: hidden;
}

.mainSlide .swiper-wrapper {
  position: relative;
  overflow: hidden;
}

.mainSlide .swiper-slide {
  position: relative;
  overflow: hidden;
}

.mainSlide .slideImage {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.zoomInImage {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

@media only screen and (max-width: 736px) {
  .mainSlide .slideImage--pc {
    display: none;
  }
}

@media only screen and (min-width: 736px) {
  .mainSlide .slideImage--sp {
    display: none;
  }
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

.mainSlide .sw-zoomIn.swiper-slide-active .slideImage {
  -webkit-animation: zoomIn 7s linear 0s 1 normal both;
  animation: zoomIn 7s linear 0s 1 normal both;
}

.swiper-slide--first {
  position: relative;
}

.swiper-slide--first .mainVisual__bg {
  color: #fff;
  font-size: 30px;
  position: absolute;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.zoomOutImage {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* 初回のみの遅延用クラス */
.initial-delay {
  -webkit-animation: zoomOut 5s linear 0s 1 normal forwards !important;
  animation: zoomOut 5s linear 0s 1 normal forwards !important;
}

@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.mainSlide .sw-zoomOut.swiper-slide-active .slideImage {
  -webkit-animation: zoomOut 7s linear 0s 1 normal both;
  animation: zoomOut 7s linear 0s 1 normal both;
}

@-webkit-keyframes horizon-r {
  0% {
    -webkit-transform: scale(1.1) translate3d(-5%, 0, 0);
    transform: scale(1.1) translate3d(-5%, 0, 0);
  }

  100% {
    -webkit-transform: scale(1.1) translate3d(5%, 0, 0);
    transform: scale(1.1) translate3d(5%, 0, 0);
  }
}

@keyframes horizon-r {
  0% {
    -webkit-transform: scale(1.1) translate3d(-5%, 0, 0);
    transform: scale(1.1) translate3d(-5%, 0, 0);
  }

  100% {
    -webkit-transform: scale(1.1) translate3d(5%, 0, 0);
    transform: scale(1.1) translate3d(5%, 0, 0);
  }
}

.mainSlide .sw-horizon-r.swiper-slide-active .slideImage {
  -webkit-animation: horizon-r 10s linear 0s 1 normal both;
  animation: horizon-r 10s linear 0s 1 normal both;
}

@keyframes horizon-r {
  0% {
    -webkit-transform: scale(1.1) translate3d(5%, 0, 0);
    transform: scale(1.1) translate3d(5%, 0, 0);
  }

  100% {
    -webkit-transform: scale(1.1) translate3d(-5%, 0, 0);
    transform: scale(1.1) translate3d(-5%, 0, 0);
  }
}

.mainSlide .sw-horizon-l.swiper-slide-active .slideImage {
  -webkit-animation: horizon-r 10s linear 0s 1 normal both;
  animation: horizon-r 10s linear 0s 1 normal both;
}

@keyframes horizon-r {
  0% {
    -webkit-transform: scale(1.1) translate3d(0, 5%, 0);
    transform: scale(1.1) translate3d(0, 5%, 0);
  }

  100% {
    -webkit-transform: scale(1.1) translate3d(0, -5%, 0);
    transform: scale(1.1) translate3d(0, -5%, 0);
  }
}

.mainSlide .sw-vertical-t.swiper-slide-active .slideImage,
.mainSlide .sw-vertical-t.swiper-slide-duplicate-active .slideImage,
.mainSlide .sw-vertical-t.swiper-slide-prev .slideImage {
  -webkit-animation: horizon-r 10s linear 0s 1 normal both;
  animation: horizon-r 10s linear 0s 1 normal both;
}

@keyframes horizon-r {
  0% {
    -webkit-transform: scale(1.1) translate3d(0, -5%, 0);
    transform: scale(1.1) translate3d(0, -5%, 0);
  }

  100% {
    -webkit-transform: scale(1.1) translate3d(0, 5%, 0);
    transform: scale(1.1) translate3d(0, 5%, 0);
  }
}

.mainSlide .sw-vertical-b.swiper-slide-active .slideImage,
.mainSlide .sw-vertical-b.swiper-slide-duplicate-active .slideImage,
.mainSlide .sw-vertical-b.swiper-slide-prev .slideImage {
  -webkit-animation: horizon-r 10s linear 0s 1 normal both;
  animation: horizon-r 10s linear 0s 1 normal both;
}

.endSlide {
  /*position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  transition: 1.3s;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.endSlide.is-start {
  opacity: 1;
  transition: 1.3s 7s;
  visibility: visible;
}

.endSlide__image {}

.endSlide__image--pc {}

.endSlide__image--sp {
  display: none;
}

@media only screen and (max-width: 736px) {
  .endSlide__image--pc {
    display: none;
  }

  .endSlide__image--sp {
    display: block;
  }
}


.endTitle {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-53%, -50%);
  transition: 1.3s;
}

.endTitle.is-start {
  opacity: 1;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 736px) {
  .endTitle {
    width: calc(588vw/750*100);
  }
}

.endTitle__image--pc {}

.endTitle__image--sp {
  display: none;
}

@media only screen and (max-width: 736px) {
  .endTitle__image--pc {
    display: none;
  }

  .endTitle__image--sp {
    display: block;
  }
}



.mainSection {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  bottom: 75px;
  color: #ffffff;
  font-family: 'Old Standard TT', serif;
  left: 75px;
  position: absolute;
  z-index: 99;
}

@media only screen and (max-width: 736px) {
  .mainSection {
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    left: 0;
    padding: calc(60vw / 750 * 100);
    width: 100%;
  }
}

.mainSection__headline {
  display: inline-block;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1;
  overflow: hidden;
  text-indent: 0;
}

@media only screen and (max-width: 736px) {
  .mainSection__headline {
    font-size: calc(48vw / 750 * 100);
  }
}

.mainSection__headline .for {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 24px;
  position: relative;
  text-indent: .1em;
}

@media only screen and (max-width: 736px) {
  .mainSection__headline .for {
    font-size: calc(48vw / 750 * 100);
  }
}

.mainSection__headline .for:before {
  background-color: #ffffff;
  content: '';
  height: 1px;
  left: calc(100% + 10px);
  position: absolute;
  top: 50%;
  width: 500%;
}

.mainSection__headline .dMarks {
  display: block;
  font-size: 96px;
  letter-spacing: 0;
}

@media only screen and (max-width: 736px) {
  .mainSection__headline .dMarks {
    font-size: calc(114vw / 750 * 100);
  }
}

.mainSection__text {
  font-size: 14px;
  letter-spacing: .05em;
  line-height: calc(20 / 14);
  margin-top: 25px;
}

@media only screen and (max-width: 736px) {
  .mainSection__text {
    font-size: calc(20vw / 750 * 100);
    display: none;
  }
}

.conceptArea {
  padding: 160px 0;
  position: relative;
}

@media only screen and (max-width: 736px) {
  .conceptArea {
    padding: calc(120vw / 750 * 100) calc(40vw / 750 * 100);
  }
}

.conceptArea .bgText {
  color: #333333;
  font-family: 'Old Standard TT', serif;
  font-size: calc(420vw / 1440 * 100);
  left: 0;
  opacity: .04;
  position: absolute;
  text-align: center;
  top: 200px;
  width: 100%;
  z-index: -1;
}

@media only screen and (max-width: 736px) {
  .conceptArea .bgText {
    color: #666666;
  }
}

.conceptArea .bgText .t {
  display: inline-block;
}

.conceptSection {
  text-align: center;
}

.conceptSection__headline {
  /*  font-family: 'Montserrat', sans-serif;*/
  font-family: 'Six Caps', sans-serif;
  font-size: 48px;

  letter-spacing: .28em;
  line-height: .8;

}

@media only screen and (max-width: 736px) {
  .conceptSection__headline {
    font-size: calc(80vw / 750 * 100);
  }
}

.conceptSection__headline .copy {
  display: block;
  font-family: 'Old Standard TT', serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: .16em;
  line-height: 1.2;
  margin-top: 32px;
}

@media only screen and (max-width: 736px) {
  .conceptSection__headline .copy {
    font-size: calc(48vw / 750 * 100);
  }
}

.conceptSection__subheadline {
  font-size: 24px;
  letter-spacing: .15em;
  line-height: calc(48 / 24);
  margin-top: 40px;
}

@media only screen and (max-width: 736px) {
  .conceptSection__subheadline {
    font-size: calc(40vw / 750 * 100);
    letter-spacing: 0.05em;
  }
}

.conceptSection__text {
  /* font-family: 'Noto Sans JP', '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
 */
  font-size: 16px;
  letter-spacing: .15em;
  line-height: calc(28 / 12);
  margin-top: 10px;
}

@media only screen and (max-width: 736px) {
  .conceptSection__text {
    font-size: calc(24vw / 750 * 100);
    line-height: calc(56 / 24);
    margin-top: calc(70vw / 750 * 100);
  }
}

.guideContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.guideContent__item {
  width: 50%;
}

@media only screen and (max-width: 736px) {
  .guideContent__item {
    width: 100%;
  }
}

.guideContent__item:nth-of-type(2n) .guideSection {
  background: #ececee;
}

.guideContent__item--full {
  width: 100%;
}

@media only screen and (min-width: 736px) {
  .guideContent__item--full .guideSection {
    background: #ececee;
  }
}

.guideBlock--nolink {
  pointer-events: none;
}

.guideBlock__link {
  display: block;
}

.guideBlock .bnrVisual {
  overflow: hidden;
  position: relative;
}

.guideBlock .bnrVisual .bnrVisual__caption {
  color: #fff;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

@media only screen and (max-width: 736px) {
  .guideBlock .bnrVisual .bnrVisual__caption {
    bottom: calc(20vw/750*100);
    right: calc(80vw/750*100);
  }
}

.guideBlock .bnrVisual__image {
  -webkit-transition: 2s;
  -o-transition: 2s;
  transition: 2s;
  width: 100%;
  z-index: -1;
}

.guideBlock .bnrVisual--youtube {
  height: calc(800vw/1440*100);
  pointer-events: none;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  .guideBlock .bnrVisual--youtube {
    height: calc(500vw/750*100);
  }
}

.guideBlock .bnrVisual .bgPlayer {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media only screen and (max-width: 736px) {
  .guideBlock .bnrVisual .bgPlayer {
    padding-top: 100%;
  }
}

.guideBlock .bnrVisual .bgPlayer iframe {
  height: 120% !important;
  left: 50%;
  position: absolute;
  top: 20%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 120% !important;
}

.guideBlock .guideSection {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 50px 80px;
  position: relative;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

.guideBlock .guideSection:before {
  background: #cccccc;
  content: '';
  height: 10px;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  width: 100%;
}

@media only screen and (max-width: 736px) {
  .guideBlock .guideSection {
    padding: calc(100vw / 750 * 100) calc(120vw / 750 * 100);
  }
}

.guideBlock .guideSection__title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.guideBlock .guideSection__title .en {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  letter-spacing: .1em;
  line-height: .9;
}

@media only screen and (max-width: 736px) {
  .guideBlock .guideSection__title .en {
    font-size: calc(56vw / 750 * 100);
  }
}

.guideBlock .guideSection__title .jp {
  font-size: 16px;
  letter-spacing: .15em;
  margin-left: 20px;
  padding: 0 20px;
  position: relative;
}

@media only screen and (max-width: 736px) {
  .guideBlock .guideSection__title .jp {
    display: none;
  }
}

.guideBlock .guideSection__title .jp:before,
.guideBlock .guideSection__title .jp:after {
  background-color: #333333;
  content: '';
  height: 1px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 10px;
}

.guideBlock .guideSection__title .jp:before {
  left: 0;
}

.guideBlock .guideSection__title .jp:after {
  right: 0;
}

.guideBlock .guideSection__text {
  font-size: 16px;
  letter-spacing: .16em;
  line-height: calc(26 / 16);
  margin-top: 25px;
  padding-top: 20px;
  position: relative;
}

@media only screen and (max-width: 736px) {
  .guideBlock .guideSection__text {
    font-size: calc(24vw / 750 * 100);
  }
}

.guideBlock .guideSection__text:before {
  background-color: #999999;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  top: 0;
  width: 32px;
}

.guideBlock:hover .bnrVisual__image {
  opacity: .9;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.guideBlock:hover .guideSection {
  opacity: .6;
}

.guideBlock:hover .guideSection:before {
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
}

.conctactLead {
  margin-top: 32px;
  padding-top: 25px;
  position: relative;
  text-align: center;
}

/*.conctactLead:before {
  background-color: #c0b79e;
  content: '';
  height: 2px;
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 40px;
}
*/
.conctactLead__text {
  font-size: 14px;
  letter-spacing: .15em;
  line-height: calc(24 / 14);
  margin-top: 10px;
}

.infoImg {
  text-align: center;
  margin: 40px auto;
}

@media only screen and (max-width: 736px) {
  .infoImg {
    text-align: center;
    margin: 40px auto 0;
  }

  .conctactLead {
    margin-top: 0
  }
}

@media only screen and (max-width: 736px) {
  .conctactLead__text {
    font-size: calc(24vw / 750 * 100);
    line-height: calc(48 / 24);
    margin-top: calc(70vw / 750 * 100);
  }
}

.conctactLead .contactBtn {
  margin-top: 30px;
}

.cvContent {
  padding: 60px 0;
}

.cvContent .contactBtn a {
  background-color: #b1a279;
  height: 100%;
}

@media only screen and (min-width: 736px) {
  .cvContent {
    display: none;
  }
}

.conctactLead .contactBtn+.accordionBtn {
  margin-top: 30px;
}

.accordionBtn {
  height: 64px;
  margin: 0 auto;
  position: relative;
  width: 320px;
}

@media only screen and (max-width: 768px) {
  .accordionBtn {
    height: calc(100vw / 750 * 100);
    width: calc(560vw / 750 * 100);
  }
}

.accordionBtn.is-active .accordionBtn__inner {
  background-color: #301200;
  border: 1px solid #301200;
}

.accordionBtn.is-active .accordionBtn__arrow {
  transform: rotate(90deg) translate(0, -70%);
  transform-origin: top center;
}

.accordionBtn__arrow {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
  transition: .3s;
}

.accordionBtn__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #441f09;
  border: 1px solid #441f09;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 11px;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: .15em;
  line-height: 1;
  text-align: center;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  width: 100%;
}

@media only screen and (max-width: 768px) {

  .accordionBtn__inner {
    letter-spacing: 0;
  }
}

@media only screen and (min-width: 768px) {
  .accordionBtn:hover .accordionBtn__inner {
    background: #fff;
    color: #441f09;
  }

  .accordionBtn:hover .accordionBtn__arrow path {
    fill: #441f09;
  }
}

.accordionCont {
  display: none;
  margin-top: 25px;
}</pre></body></html>