@charset "UTF-8";
html {
  font-size: 2.5641025641vw; /*iPhoneの最小サイズ320pxに10px*/
  font-weight: 400;
}
@media screen and (min-width: 576px) {
  html {
    font-size: 62.5%;
  }
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s 0.05s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.fade-in.active {
  opacity: 1;
}

.slide-in {
  opacity: 0;
  transform: translate(0, 15px);
  transition: all 1s 0.1s ease-out;
}
.slide-in.active {
  opacity: 1;
  transform: translate(0, 0);
}

.scale-down {
  opacity: 0;
  transform: scale(1.08);
  transition: all 1s 0.1s ease-out;
}
.scale-down.active {
  opacity: 1;
  transform: scale(1);
}

.home .hero #background-image {
  opacity: 0;
  animation: fadeInHalf 2s 0s cubic-bezier(0.47, 0, 0.745, 0.715) forwards;
}

.home .hero #hero-title_01 {
  opacity: 0;
  animation: hero-title_01_anim 4.5s 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) forwards;
}

.home .hero #hero-title_02 {
  opacity: 0;
  animation: hero-title_02_anim 7.5s 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) forwards;
}

.home .hero #hero-title_03 {
  opacity: 0;
  animation: hero-title_03_anim 4s 4s cubic-bezier(0.47, 0, 0.745, 0.715) forwards;
}

.home .hero #background-image.start {
  opacity: 0.75;
  animation: fadeInFull 2s 0s cubic-bezier(0.47, 0, 0.745, 0.715) forwards;
}

nav.start {
  display: block;
  animation: fadeInNav 2s 0s cubic-bezier(0.47, 0, 0.745, 0.715) forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInHalf {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.75;
  }
}
@keyframes fadeInFull {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hero-title_01_anim {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  67% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hero-title_02_anim {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  87% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hero-title_03_anim {
  0% {
    opacity: 0;
  }
  37.5% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInNav {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

body {
  font-family: "Shippori Mincho", serif;
  color: #59676d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0rem;
  line-height: 1.7;
}

a {
  text-decoration: none;
  cursor: pointer;
}
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

strong {
  font-weight: 600;
}

sup {
  font-size: 77%;
  line-height: 0.8;
}

@media screen and (min-width: 576px) {
  .fluid_columns.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .fluid_columns.flex .column.align_flex_start {
    align-self: flex-start;
  }
  .fluid_columns.flex .column.align_flex_end {
    align-self: flex-end;
  }
}
.uppercase {
  text-transform: uppercase;
}

.bullet {
  font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
}

.lang_en {
  font-family: "Cormorant Garamond", serif;
}

.lang_cn {
  font-family: "Hei Regular", "SimHei", sans-serif;
}

.font_serif {
  font-family: serif;
}

#copyright,
.copyright_sign {
  font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

div.separator hr {
  display: none;
}

.fluid_gap {
  display: none;
}

div.fluid_gap hr {
  display: none;
}

span.text_row {
  display: inline-block;
}
@media screen and (min-width: 576px) {
  span.text_row {
    display: inline;
  }
}
span.text_row br {
  display: none;
}
@media screen and (min-width: 576px) {
  span.text_row br {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

.sp_none {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp_none {
    display: inline;
  }
}

.lang_en {
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}

a:hover {
  opacity: 0.7;
  cursor: pointer;
}

a img:hover {
  opacity: 0.7;
  cursor: pointer;
}

svg {
  fill: currentColor;
}

.text_std {
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (min-width: 576px) {
  .text_std {
    font-size: 1.5rem;
  }
}

.heading_std {
  margin: 0 0 0.6em;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 576px) {
  .heading_std {
    font-size: 1.6rem;
  }
}

ol.list_std {
  padding: 0 0 0 1.6em;
}
ol.list_std li {
  list-style: decimal;
  margin: 0 0 0.4em;
}

ul.list_symbol {
  padding: 0 0 0 1.6em;
}
@media screen and (min-width: 576px) {
  ul.list_symbol {
    padding: 1em 0 0 1.6em;
  }
}
ul.list_symbol li {
  text-indent: -1em;
  margin: 0 0 0.8em;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 576px) {
  ul.list_symbol li {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 576px) {
  .rotate-90-dt {
    display: inline-block;
    transform: rotate(-90deg);
    padding-top: 3px;
  }
}

.punctuation-mark {
  margin-right: 0.5rem;
}

.space-1rem {
  padding-right: 0.9rem;
}

.henging-period:after {
  content: "。";
  position: absolute;
}

.home {
  background-color: #efeadd;
}
.home .page {
  margin: auto;
  width: 100%;
  max-width: 1200px;
}
@media screen and (min-width: 768px) {
  .home .page {
    padding: 0;
  }
}
.home .page nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: none;
  opacity: 0;
  mix-blend-mode: exclusion;
  pointer-events: none;
}
.home .page nav.start {
  display: block;
}
.home .page nav .book {
  position: absolute;
  top: 25px;
  right: 20px;
  pointer-events: auto;
}
.home .page nav .book img {
  width: 22.3918575064vw;
  max-width: 100px;
  height: auto;
}
.home .page nav .logo {
  position: absolute;
  top: 41%;
  right: 20px;
  transform: translateY(-41%);
}
@media screen and (min-width: 768px) {
  .home .page nav .logo {
    top: 50%;
    transform: translateY(-50%);
  }
}
.home .page nav .logo img {
  width: 34.6055979644vw;
  max-width: 170px;
  height: auto;
}
.home .page nav .lang {
  position: absolute;
  bottom: 25px;
  right: 20px;
  pointer-events: auto;
}
.home .page nav .lang img {
  width: 3.0534351145vw;
  max-width: 14px;
  height: auto;
}
.home .page nav .key {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 27px;
}
.home .page nav .key img {
  width: 1.7811704835vw;
  max-width: 7px;
  height: auto;
}
.home .page .hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .home .page .hero {
    padding: 90px 20px;
  }
}
.home .page .hero .hero-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 33.0788804071vw;
  height: auto;
}
.home .page .hero .hero-inner .hero-title {
  position: relative;
}
.home .page .hero .hero-inner .hero-title #hero-title_01 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33.0788804071vw;
  max-width: 150px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .home .page .hero .hero-inner .hero-title #hero-title_01 {
    width: 30.3333333333vw;
    max-width: 364px;
  }
}
.home .page .hero .hero-inner .hero-title #hero-title_01 img {
  width: 33.0788804071vw;
  max-width: 150px;
  height: auto;
  mix-blend-mode: plus-lighter;
}
@media screen and (min-width: 768px) {
  .home .page .hero .hero-inner .hero-title #hero-title_01 img {
    width: 30.3333333333vw;
    max-width: 364px;
  }
}
.home .page .hero .hero-inner .hero-title #hero-title_02 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33.0788804071vw;
  max-width: 150px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .home .page .hero .hero-inner .hero-title #hero-title_02 {
    width: 30.3333333333vw;
    max-width: 364px;
  }
}
.home .page .hero .hero-inner .hero-title #hero-title_02 img {
  width: 33.0788804071vw;
  max-width: 150px;
  height: auto;
  mix-blend-mode: plus-lighter;
}
@media screen and (min-width: 768px) {
  .home .page .hero .hero-inner .hero-title #hero-title_02 img {
    width: 30.3333333333vw;
    max-width: 364px;
  }
}
.home .page .hero .hero-inner .hero-title #hero-title_03 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33.0788804071vw;
  max-width: 150px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .home .page .hero .hero-inner .hero-title #hero-title_03 {
    width: 30.3333333333vw;
    max-width: 364px;
  }
}
.home .page .hero .hero-inner .hero-title #hero-title_03 img {
  width: 33.0788804071vw;
  max-width: 150px;
  height: auto;
  mix-blend-mode: plus-lighter;
}
@media screen and (min-width: 768px) {
  .home .page .hero .hero-inner .hero-title #hero-title_03 img {
    width: 30.3333333333vw;
    max-width: 364px;
  }
}
.home .page .hero #background-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .home .page .hero #background-image {
    width: 50%;
    max-width: 580px;
    max-height: calc(100vh - 150px);
  }
}
.home .page .hero #background-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  mix-blend-mode: plus-lighter;
}
@media screen and (min-width: 768px) {
  .home .page .hero #background-image img {
    width: 100%;
    object-fit: contain;
  }
}
.home .page .page-body {
  padding: 34.3511450382vw 0 24.1730279898vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body {
    padding: 128px 20px 0;
    width: 100%;
    max-width: 1200px;
  }
}
.home .page .page-body h2 {
  padding-left: 11.4503816794vw;
  font-size: 2.7989821883vw;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .home .page .page-body h2 {
    padding-left: 6.6666666667vw;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1200px) {
  .home .page .page-body h2 {
    padding-left: 80px;
  }
}
.home .page .page-body .TimeAndSpace {
  padding-top: 11.4503816794vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .TimeAndSpace {
    padding-top: 118px;
  }
}
.home .page .page-body .TimeAndSpace .body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .TimeAndSpace .body {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: center;
  }
}
.home .page .page-body .TimeAndSpace .body .title {
  font-size: 3.5623409669vw;
  writing-mode: vertical-rl;
  letter-spacing: 0.2rem;
  padding-left: 5.0890585242vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .TimeAndSpace .body .title {
    font-size: 1.6rem;
    padding-left: 20px;
  }
}
.home .page .page-body .TimeAndSpace .body .image img {
  width: 76.3358778626vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .TimeAndSpace .body .image img {
    width: 41.6666666667vw;
    max-width: 500px;
    margin-left: 40px;
  }
}
.home .page .page-body .TimeAndSpace .bottom {
  width: 100%;
  padding-top: 15.2671755725vw;
  font-size: 2.7989821883vw;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .TimeAndSpace .bottom {
    padding-top: 120px;
    font-size: 1.3rem;
  }
}
.home .page .page-body .TimeAndSpace .bottom p {
  margin-left: auto;
  width: 76.3358778626vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .TimeAndSpace .bottom p {
    margin: 0;
    padding-left: 20vw;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .home .page .page-body .TimeAndSpace .bottom p {
    padding-left: 240px;
  }
}
.home .page .page-body .InsideAndOutside {
  padding-top: 30.534351145vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .InsideAndOutside {
    padding-top: 170px;
  }
}
.home .page .page-body .InsideAndOutside .body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .InsideAndOutside .body {
    width: 100%;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
  }
}
.home .page .page-body .InsideAndOutside .body .title {
  font-size: 3.5623409669vw;
  writing-mode: vertical-rl;
  letter-spacing: 0.2rem;
  padding-right: 5.0890585242vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .InsideAndOutside .body .title {
    font-size: 1.6rem;
    padding-right: 20px;
  }
}
.home .page .page-body .InsideAndOutside .body .image img {
  width: 66.1577608142vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .InsideAndOutside .body .image img {
    width: 40vw;
    max-width: 480px;
  }
}
.home .page .page-body .InsideAndOutside .bottom {
  width: 100%;
  padding-top: 21.6284987277vw;
  font-size: 2.7989821883vw;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .InsideAndOutside .bottom {
    padding-top: 200px;
    font-size: 1.3rem;
  }
}
.home .page .page-body .InsideAndOutside .bottom p {
  padding-left: 11.4503816794vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .InsideAndOutside .bottom p {
    margin: 0;
    padding-left: 5vw;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .home .page .page-body .InsideAndOutside .bottom p {
    padding-left: 60px;
  }
}
.home .page .page-body .SolitudeAndIndividuality {
  padding-top: 34.3511450382vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .SolitudeAndIndividuality {
    padding-top: 187px;
  }
}
.home .page .page-body .SolitudeAndIndividuality .body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .SolitudeAndIndividuality .body {
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: flex-end;
  }
}
.home .page .page-body .SolitudeAndIndividuality .body .title {
  font-size: 3.5623409669vw;
  writing-mode: vertical-rl;
  letter-spacing: 0.2rem;
  padding-left: 5.0890585242vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .SolitudeAndIndividuality .body .title {
    font-size: 1.6rem;
    padding-left: 20px;
  }
}
.home .page .page-body .SolitudeAndIndividuality .body .image img {
  width: 76.3358778626vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .SolitudeAndIndividuality .body .image img {
    width: 46.25vw;
    max-width: 555px;
    padding: 0;
  }
}
.home .page .page-body .SolitudeAndIndividuality .bottom {
  width: 100%;
  padding-top: 17.8117048346vw;
  font-size: 2.7989821883vw;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .SolitudeAndIndividuality .bottom {
    padding-top: 76px;
    font-size: 1.3rem;
    display: flex;
    justify-content: flex-end;
  }
}
.home .page .page-body .SolitudeAndIndividuality .bottom p {
  padding-left: 11.4503816794vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .SolitudeAndIndividuality .bottom p {
    text-align: left;
    margin-left: auto;
    padding-left: 0;
    padding-right: 9.6666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .home .page .page-body .SolitudeAndIndividuality .bottom p {
    padding-right: 116px;
  }
}
.home .page .page-body .LightAndShadow {
  padding-top: 30.534351145vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .LightAndShadow {
    padding-top: 175px;
  }
}
.home .page .page-body .LightAndShadow .body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .LightAndShadow .body {
    justify-content: flex-start;
  }
}
.home .page .page-body .LightAndShadow .body .title {
  font-size: 3.5623409669vw;
  writing-mode: vertical-rl;
  letter-spacing: 0.2rem;
  padding-right: 5.0890585242vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .LightAndShadow .body .title {
    font-size: 1.6rem;
    padding: 0 20px;
  }
}
.home .page .page-body .LightAndShadow .body .image img {
  width: 76.3358778626vw;
  padding-left: 5.0890585242vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .LightAndShadow .body .image img {
    width: 43.3333333333vw;
    max-width: 520px;
    padding: 0;
  }
}
.home .page .page-body .LightAndShadow .bottom {
  width: 100%;
  padding-top: 21.6284987277vw;
  font-size: 2.7989821883vw;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .LightAndShadow .bottom {
    padding-top: 160px;
    font-size: 1.3rem;
  }
}
.home .page .page-body .LightAndShadow .bottom p {
  padding-left: 5.0890585242vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .LightAndShadow .bottom p {
    margin: 0;
    padding-left: 5.25vw;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .home .page .page-body .LightAndShadow .bottom p {
    padding-left: 63px;
  }
}
.home .page .page-body .LightAndShadow .bottom p span {
  padding-left: 16.5394402036vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .LightAndShadow .bottom p span {
    padding-left: 83px;
  }
}
.home .page .page-body .Concluding {
  padding-top: 29.262086514vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .Concluding {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
}
.home .page .page-body .Concluding .image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .Concluding .image img {
    width: 48.3333333333vw;
    max-width: 580px;
    padding: 0;
  }
}
.home .page .page-body .Concluding .bottom {
  width: 100%;
  padding-top: 13.9949109415vw;
  font-size: 2.7989821883vw;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .Concluding .bottom {
    padding-top: 0;
    width: 100%;
    padding-left: 115px;
    font-size: 1.3rem;
  }
}
.home .page .page-body .Concluding .bottom p {
  padding-left: 5.0890585242vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .Concluding .bottom p {
    padding: 0;
  }
}
.home .page .page-body .Concluding .bottom .reservation {
  border: 1px dotted #59676d;
  text-align: center;
  margin: 24.1730279898vw 5.0890585242vw 0;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .Concluding .bottom .reservation {
    margin: 170px 0 100px;
  }
}
.home .page .page-body .Concluding .bottom .reservation a {
  width: 100%;
}
.home .page .page-body .Concluding .bottom .reservation a h3 {
  padding: 5.0890585242vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .Concluding .bottom .reservation a h3 {
    padding: 16px;
  }
}
.home .page .page-body .Concluding .bottom .reservation a h3 span {
  font-size: 3.3078880407vw;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .home .page .page-body .Concluding .bottom .reservation a h3 span {
    font-size: 1.5rem;
  }
}
.home .page .page-bottom {
  width: 100%;
  padding: 0 5.0890585242vw;
  font-size: 2.7989821883vw;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom {
    padding: 240px 20px 0;
    width: 100%;
    max-width: 1200px;
    font-size: 1.3rem;
  }
}
.home .page .page-bottom .separatedTitle {
  background-size: 2px 1px;
  background-image: linear-gradient(to right, #000000 1px, transparent 1px);
  background-repeat: repeat-x;
  background-position: left center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home .page .page-bottom .separatedTitle .title {
  font-family: "Cormorant Garamond", serif;
  padding: 0 0.7633587786vw 0 0;
  background-color: #efeadd;
}
.home .page .page-bottom .separatedTitle .image {
  display: flex;
  align-items: center;
  padding: 0 0 0 1.0178117048vw;
  background-color: #efeadd;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .separatedTitle .image {
    padding: 0 0 0 5px;
  }
}
.home .page .page-bottom .separatedTitle .image img {
  width: 1.5267175573vw;
  height: auto;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .separatedTitle .image img {
    width: 10px;
  }
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .information .body {
    display: flex;
    justify-content: flex-start;
    padding: 115px 40px 0;
  }
}
.home .page .page-bottom .information .body .instagram {
  padding-top: 19.0839694656vw;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .information .body .instagram {
    width: 25%;
    padding: 0;
    display: block;
  }
}
.home .page .page-bottom .information .body .instagram p {
  display: inline-block;
  width: 33%;
  font-size: 2.7989821883vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .information .body .instagram p {
    font-size: 1.3rem;
    width: auto;
    display: block;
  }
}
.home .page .page-bottom .information .body .instagram p.image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .information .body .instagram p.image {
    text-align: left;
  }
}
.home .page .page-bottom .information .body .instagram p.image img {
  width: 11.4503816794vw;
  padding-top: 1.7811704835vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .information .body .instagram p.image img {
    width: 16px;
    padding-top: 10px;
  }
}
.home .page .page-bottom .information .body .contact {
  padding-top: 17.8117048346vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .information .body .contact {
    width: 25%;
    padding-top: 0;
  }
}
.home .page .page-bottom .information .body .access {
  padding-top: 19.0839694656vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .information .body .access {
    width: 50%;
    padding-top: 0;
  }
}
.home .page .page-bottom .information .body .access a {
  text-decoration: underline;
}
.home .page .page-bottom .collaborated {
  padding: 22.1374045802vw 0 0;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .collaborated {
    padding: 110px 0 0;
  }
}
.home .page .page-bottom .collaborated .list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .collaborated .list {
    padding: 80px 40px 0;
  }
}
.home .page .page-bottom .collaborated .list div {
  width: 100%;
  text-align: left;
  padding-top: 10.1781170483vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .collaborated .list div {
    padding-top: 0;
    text-align: left;
    width: 25%;
  }
}
.home .page .page-bottom .collaborated .list div.kad img {
  display: none;
  width: 3.0534351145vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .collaborated .list div.kad img {
    display: none;
  }
}
.home .page .page-bottom .collaborated .list div.kad .text {
  display: block;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .collaborated .list div.kad .text {
    display: block;
  }
}
.home .page .page-bottom .collaborated .list div.kad .text a {
  text-decoration: underline;
}
.home .page .page-bottom .collaborated .list div.case img {
  display: none;
  width: 33.5877862595vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .collaborated .list div.case img {
    display: none;
  }
}
.home .page .page-bottom .collaborated .list div.case .text {
  display: block;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .collaborated .list div.case .text {
    display: block;
  }
}
.home .page .page-bottom .collaborated .list div.case .text a {
  text-decoration: underline;
}
.home .page .page-bottom .collaborated .list div.santa img {
  display: none;
  width: 27.4809160305vw;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .collaborated .list div.santa img {
    display: none;
  }
}
.home .page .page-bottom .collaborated .list div.santa .text {
  display: block;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .collaborated .list div.santa .text {
    display: block;
  }
}
.home .page .page-bottom .collaborated .list div.santa .text a {
  text-decoration: underline;
}
.home .page .page-bottom .media {
  padding: 9.1603053435vw 0 0;
}
.home .page .page-bottom .nocontents {
  padding: 9.1603053435vw 0 0;
}
@media screen and (min-width: 768px) {
  .home .page .page-bottom .nocontents {
    padding: 80px 0 0;
  }
}
.home.en {
  font-family: "Cormorant Garamond", serif;
}
.home.en .page .hero-inner {
  width: 52.1628498728vw;
}
.home.en .page .hero-inner .hero-title {
  position: relative;
}
.home.en .page .hero-inner .hero-title #hero-title_01 {
  width: 52.1628498728vw;
  max-width: 205px;
}
@media screen and (min-width: 768px) {
  .home.en .page .hero-inner .hero-title #hero-title_01 {
    width: 45vw;
    max-width: 540px;
  }
}
.home.en .page .hero-inner .hero-title #hero-title_01 img {
  width: 52.1628498728vw;
  max-width: 205px;
}
@media screen and (min-width: 768px) {
  .home.en .page .hero-inner .hero-title #hero-title_01 img {
    width: 45vw;
    max-width: 540px;
  }
}
.home.en .page .hero-inner .hero-title #hero-title_02 {
  width: 52.1628498728vw;
  max-width: 205px;
}
@media screen and (min-width: 768px) {
  .home.en .page .hero-inner .hero-title #hero-title_02 {
    width: 45vw;
    max-width: 540px;
  }
}
.home.en .page .hero-inner .hero-title #hero-title_02 img {
  width: 52.1628498728vw;
  max-width: 205px;
}
@media screen and (min-width: 768px) {
  .home.en .page .hero-inner .hero-title #hero-title_02 img {
    width: 45vw;
    max-width: 540px;
  }
}
.home.en .page .hero-inner .hero-title #hero-title_03 {
  width: 52.1628498728vw;
  max-width: 205px;
}
@media screen and (min-width: 768px) {
  .home.en .page .hero-inner .hero-title #hero-title_03 {
    width: 45vw;
    max-width: 540px;
  }
}
.home.en .page .hero-inner .hero-title #hero-title_03 img {
  width: 52.1628498728vw;
  max-width: 205px;
}
@media screen and (min-width: 768px) {
  .home.en .page .hero-inner .hero-title #hero-title_03 img {
    width: 45vw;
    max-width: 540px;
  }
}
.home.en .page .page-body .TimeAndSpace .bottom p {
  margin-left: auto;
  padding-right: 5.0890585242vw;
}
.home.en .page .page-body .SolitudeAndIndividuality .bottom p {
  padding-right: 5.0890585242vw;
}
@media screen and (min-width: 768px) {
  .home.en .page .page-body .SolitudeAndIndividuality .bottom p {
    padding-right: 9.6666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .home.en .page .page-body .SolitudeAndIndividuality .bottom p {
    padding-right: 116px;
  }
}
.home.en .page .page-body .LightAndShadow .bottom p {
  padding-left: 5.0890585242vw;
  padding-right: 5.0890585242vw;
}
@media screen and (min-width: 768px) {
  .home.en .page .page-body .LightAndShadow .bottom p {
    margin: 0;
    padding-left: 5.25vw;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .home.en .page .page-body .LightAndShadow .bottom p {
    padding-left: 63px;
  }
}
.home footer {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.7989821883vw;
  padding: 10.1781170483vw 5.0890585242vw;
}
@media screen and (min-width: 768px) {
  .home footer {
    margin: auto;
    width: 100%;
    max-width: 1200px;
    font-size: 1.3rem;
    padding: 80px 20px 40px;
  }
}
.home footer small {
  font-size: 100%;
}

/*# sourceMappingURL=style.css.map */
