@charset "UTF-8";
:root {
  --inner-scale: 1;
  --vw-base: calc(1440 / var(--inner-scale));
  --inner: 880;
  --fz-ratio: 1;
}
@media screen and (max-width: 999px) {
  :root {
    --fz-ratio: 1.2;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --fz-ratio: 1.0;
    --vw-base: 375;
    --inner-scale: 1;
    --inner: 297;
  }
}

/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  color: #2D2D2D;
  font-family: "yu-gothic-pr6n", sans-serif;
  word-break: break-all;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  width: min(var(--inner) / var(--vw-base) * 100% , var(--inner) / var(--vw-base) * 1440px);
  max-width: var(--vw-base);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    width: calc(var(--inner) / var(--vw-base) * 100%);
  }
}

/* ページタイトル
------------------------------*/
.c-page-title {
  text-align: center;
}

.c-page-title__en {
  display: block;
  font-size: clamp(0px, calc(100 * 100vw / var(--vw-base) * var(--fz-ratio)), 100/var(--vw-base) * 1440px);
  font-weight: 400;
  color: #E3E3E3;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.05em;
}
@media (max-width: 767px) {
  .c-page-title__en {
    font-size: clamp(0px, calc(80 * 100vw / var(--vw-base) * var(--fz-ratio)), 80/var(--vw-base) * 1440px);
  }
}

.c-page-title__en-small1 {
  font-size: clamp(0px, calc(85 * 100vw / var(--vw-base) * var(--fz-ratio)), 85/var(--vw-base) * 1440px);
}
@media (max-width: 767px) {
  .c-page-title__en-small1 {
    font-size: clamp(0px, calc(70 * 100vw / var(--vw-base)), 70/var(--vw-base) * 1440px);
  }
}

.c-page-title__ja {
  display: block;
  font-size: clamp(0px, calc(13 * 100vw / var(--vw-base) * var(--fz-ratio)), 13/var(--vw-base) * 1440px);
  line-height: 1;
  font-weight: 500;
  margin-top: -0.4em;
}
@media (max-width: 767px) {
  .c-page-title__ja {
    font-size: clamp(0px, calc(11 * 100vw / var(--vw-base) * var(--fz-ratio)), 11/var(--vw-base) * 1440px);
    margin-top: 0;
  }
}

/* ボタン
------------------------------*/
.c-btn {
  background: #FFDB7F;
  font-size: clamp(0px, calc(18 * 100vw / var(--vw-base) * var(--fz-ratio)), 18/var(--vw-base) * 1440px);
  font-weight: 600;
  line-height: normal;
  font-family: "Cormorant Garamond", serif;
  text-align: center;
  padding: 0.1em 1.4em; /*  */
}

/*------------------------------
お問い合わせ
------------------------------*/
.contact {
  background: #F8F8F8;
  padding: 0;
}
@media (max-width: 767px) {
  .contact {
    background: #A2B1B3;
    padding: clamp(0px, calc(100 * 100vw / var(--vw-base)), 100/var(--vw-base) * 1440px) 0 clamp(0px, calc(150 * 100vw / var(--vw-base)), 150/var(--vw-base) * 1440px);
  }
}

.contact__title {
  text-align: left;
}

.contact__title-en {
  display: block;
  font-size: clamp(0px, calc(85 * 100vw / var(--vw-base) * var(--fz-ratio)), 85/var(--vw-base) * 1440px);
  font-weight: 400;
  color: #E3E3E3;
  font-family: "Cormorant Garamond", serif;
  text-align: center;
  letter-spacing: -0.05em;
}
@media (max-width: 767px) {
  .contact__title-en {
    font-size: clamp(0px, calc(65 * 100vw / var(--vw-base) * var(--fz-ratio)), 65/var(--vw-base) * 1440px);
  }
}

.contact__title-ja {
  display: block;
  font-size: clamp(0px, calc(13 * 100vw / var(--vw-base) * var(--fz-ratio)), 13/var(--vw-base) * 1440px);
  line-height: 2;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__title-ja {
    font-size: clamp(0px, calc(11 * 100vw / var(--vw-base) * var(--fz-ratio)), 11/var(--vw-base) * 1440px);
  }
}

.contact__message {
  font-size: clamp(0px, calc(16 * 100vw / var(--vw-base) * var(--fz-ratio)), 16/var(--vw-base) * 1440px);
  font-weight: 500;
  line-height: 1.625;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__message {
    font-size: clamp(0px, calc(13 * 100vw / var(--vw-base) * var(--fz-ratio)), 13/var(--vw-base) * 1440px);
    margin-top: 5.2em;
  }
}

.contact__mail {
  text-align: center;
  margin-top: calc(50 / var(--inner) * 100%);
}
.contact__mail a {
  display: inline-block;
  font-size: clamp(0px, calc(30 * 100vw / var(--vw-base) * var(--fz-ratio)), 30/var(--vw-base) * 1440px);
  font-weight: 500;
  text-decoration: underline;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .contact__mail {
    margin-top: calc(50 / var(--inner) * 100%);
    text-align: left;
  }
  .contact__mail a {
    font-size: clamp(0px, calc(24 * 100vw / var(--vw-base) * var(--fz-ratio)), 24/var(--vw-base) * 1440px);
  }
}

.contact--l,
.contact--r {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.contact--l footer,
.contact--r footer {
  position: absolute;
  bottom: 0;
  width: 200%;
  background: #fff;
}

.contact--l footer {
  left: 0;
}

.contact--r {
  background: #A2B1B3;
}
.contact--r footer {
  right: 0;
}

@media (min-width: 768px) {
  body:not(.home) .contact--l,
body:not(.home) .contact--r {
    height: 650px;
  }
}

/*------------------------------
404
------------------------------*/
.error-page {
  padding: 10% 0 24.4%;
  text-align: center;
}
.error-page h2 {
  font-size: 6rem;
  font-weight: bold;
}
.error-page p {
  padding-top: 5%;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .error-page h2 {
    font-size: 4rem;
  }
  .error-page p {
    font-size: 1.6rem;
  }
}

.c-small {
  font-size: clamp(0px, calc(50 * 100vw / var(--vw-base) * var(--fz-ratio)), 50/var(--vw-base) * 1440px);
}

.c-mlr {
  margin: 0 0.3em;
}
/*# sourceMappingURL=common.css.map */