@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Marcellus&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1.5;
}

body {
  font-size: 100%;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
}

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

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

q,
blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

body,
button,
input,
select,
textarea {
  font-size: 1rem;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
}

img {
  width: 100%;
  max-width: initial;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}
img[src$=".svg"] {
  max-width: 100%;
}

label {
  margin-bottom: 0;
}

input[type=search] {
  color: inherit;
  border: 1px solid #333;
  border-radius: 0;
  padding: 0.3em 0.3em 0.3em 35px;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
}

figure {
  margin: 0;
}

h1 {
  font-size: inherit;
}

p {
  margin: 0;
}

h2 {
  color: inherit;
  font-size: 1rem;
}

h3 {
  color: inherit;
}

dl {
  margin: 0;
}

dd {
  margin: 0;
}

h3 {
  font-size: 1rem;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 0;
}

h4 {
  color: inherit;
  font-size: inherit;
  font-weight: normal;
}

button,
input[type=button],
input[type=submit] {
  background-color: transparent;
}

ol {
  list-style: none;
}

a:hover,
a:active {
  color: inherit;
}

/*================================
	サイトごとに設定
=================================*/
/*================================
	メディアクエリの設定
=================================*/
/*================================
	サイト共通設定
=================================*/
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  word-wrap: break-word;
  color: #000;
  width: 100%;
}
html * {
  font-weight: inherit;
  box-sizing: border-box;
}
html {
  height: 100%;
}

/*================================
	PC 共通設定
=================================*/
@media print, screen and (min-width: 768px) {
  html {
    overflow-y: scroll;
  }
  .inner {
    width: 90.9090909091%;
    max-width: 1000px;
    margin: auto;
  }
}
/*================================
	PC 相対値範囲設定
=================================*/
@media print, screen and (min-width: 768px) and (max-width: 1100px) {
  html {
    font-size: 1vw;
  }
}
/*================================
	SP 共通設定
=================================*/
@media only screen and (max-width: 768px) {
  html {
    font-size: 3.6458333333vw;
  }
  .inner {
    width: 90%;
    margin: auto;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* BASE STYLE
--------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  vertical-align: middle;
}

html {
  scroll-padding-top: 90px; /* ヘッダーの高さが80pxの場合 */
  scroll-behavior: smooth; /* (任意) スムーススクロール */
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 16vw;
  }
}

/* CLEAR-FIX */
.clearfix {
  zoom: 1;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

.wrap {
  overflow: hidden;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.is-between {
  justify-content: space-between;
}

.flexdry {
  flex-direction: row-reverse;
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
/*------------------------------------------------

l-header

-------------------------------------------------*/
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  height: 90px;
}
.l-header.active {
  background-color: rgba(255, 255, 255, 0.8);
}
.l-header .l-header-inner {
  align-items: center;
  height: 100%;
}
.l-header .l-header-logo__ttl {
  width: 180px;
  position: fixed;
  top: 15px;
  left: 20px;
  transition: all 0.6s ease;
  z-index: 11111;
}
.l-header .l-header-logo__ttl .-link {
  display: block;
}
.l-header .l-header-area {
  align-items: center;
}
.l-header .l-header-area__list {
  margin-right: 280px;
  gap: 0 30px;
}
.l-header .l-header-area__list-item .-link {
  display: block;
  color: #000;
  font-family: "Noto Serif", serif;
  font-size: 15px;
  transition: all 0.3s ease;
}
.l-header .l-header-area__list-item .-link:hover {
  opacity: 0.8;
}
.l-header .l-header-area__contact-btn {
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  right: 0;
}
.l-header .l-header-area__contact-btn .-link {
  height: 100%;
  display: flex;
  font-family: "Noto Serif", serif;
  font-size: 14px;
  align-items: center;
  background-color: #292929;
  justify-content: center;
  color: #fff;
}
.l-header .l-header-area__contact-btn .sp-txt {
  display: none;
}
.l-header .l-header-area__contact-btn .pc-txt {
  display: inline-block;
}
.l-header .l-header-area__contact-btn .-icon {
  position: relative;
  padding-top: 30px;
}
.l-header .l-header-area__contact-btn .-icon::before {
  content: "";
  position: absolute;
  display: block;
  background: url(../../../img/common/calendar-icon.png) no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
}
.l-header .l-header-sns {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  right: 180px;
  gap: 15px;
}
.l-header .l-header-sns__list {
  width: 20px;
  height: 20px;
}
.l-header .l-header-sns__list a {
  display: flex;
}
.l-header .l-header-humbtn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header .l-header-logo__ttl {
    width: 150px;
    top: 20px;
  }
  .l-header .l-header-area__list {
    margin-right: 220px;
    gap: 0 15px;
  }
  .l-header .l-header-area__list-item .-link {
    font-size: 13px;
  }
  .l-header .l-header-area__contact-btn {
    width: 130px;
  }
  .l-header .l-header-sns {
    right: 150px;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 16vw;
  }
  .l-header.open {
    background-color: #fff;
  }
  .l-header .l-header-logo__ttl {
    width: 26.6666666667vw;
    left: 2.6666666667vw;
    top: 4vw;
  }
  .l-header .l-header-area {
    background-color: #fff;
    position: fixed;
    height: calc(100vh - 16vw);
    top: 16vw;
    padding: 0 8vw 0;
    padding-bottom: 16vw;
    width: 100%;
    left: 0;
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    transition: all 0.3s ease;
    overflow: scroll;
  }
  .l-header .l-header-area.open {
    opacity: 1;
    transform: translateX(0%);
    z-index: 1000;
    pointer-events: auto;
  }
  .l-header .l-header-area__list {
    width: 100%;
    margin-top: 5.3333333333vw;
    margin-right: 0px;
  }
  .l-header .l-header-area__list-item {
    width: 100%;
    position: relative;
  }
  .l-header .l-header-area__list-item .-link {
    position: relative;
    display: block;
    color: #454545;
    padding: 5.3333333333vw 0;
    font-size: 4vw;
    border-bottom: 1px solid #D0D0D0;
  }
  .l-header .l-header-area__contact {
    width: 100%;
    margin: auto;
    margin-top: 5.3333333333vw;
  }
  .l-header .l-header-area__contact-btn {
    position: static;
    top: 0;
    width: 100%;
    height: auto;
    right: 0;
  }
  .l-header .l-header-area__contact-btn .-link {
    position: relative;
    font-size: 4vw;
    padding: 3.2vw 0;
    font-family: "Noto Serif", serif;
    font-weight: 400;
  }
  .l-header .l-header-area__contact-btn .-icon {
    padding-left: 6.6666666667vw;
    padding-top: 0;
  }
  .l-header .l-header-area__contact-btn .-icon::before {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    top: 5%;
    left: 0;
    transform: translateX(0);
  }
  .l-header .l-header-area__contact-btn .pc-txt {
    display: none;
  }
  .l-header .l-header-area__contact-btn .sp-txt {
    display: inline-block;
  }
  .l-header .l-header-sns--pc {
    display: none !important;
  }
  .l-header .l-header-sns {
    width: 100%;
    position: static;
    margin: auto;
    margin-top: 10.6666666667vw;
  }
  .l-header .l-header-sns-outer {
    justify-content: center;
    gap: 5.3333333333vw;
  }
  .l-header .l-header-sns__list {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
  .l-header .l-header-humbtn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 16vw;
    height: 16vw;
    background-color: #030303;
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line {
    position: absolute;
    width: 8vw;
    height: 0.5333333333vw;
    background-color: #fff;
    top: 50%;
    left: 28%;
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line:nth-child(1) {
    transform: translateY(0px) rotate(45deg);
    left: 28%;
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line:nth-child(2) {
    transform: translateY(0px) rotate(-45deg);
    left: 28%;
  }
  .l-header .l-header-humbtn__line {
    position: absolute;
    width: 8vw;
    height: 0.5333333333vw;
    background-color: #fff;
    top: 50%;
    left: 28%;
    transition: all 0.3s ease;
  }
  .l-header .l-header-humbtn__line:nth-child(1) {
    transform: translateY(-1.0666666667vw);
    width: 8vw;
  }
  .l-header .l-header-humbtn__line:nth-child(2) {
    transform: translateY(1.0666666667vw);
    width: 8vw;
  }
}

/*------------------------------------------------

l-footer

-------------------------------------------------*/
.l-footer {
  background-color: #202020;
}
.l-footer .l-footer--inner {
  max-width: 1160px;
  padding: 70px 0;
}
.l-footer .l-footer-top__left .-logo {
  width: 150px;
}
.l-footer .l-footer-top__left .-sns {
  margin-top: 120px;
  display: flex;
  gap: 15px;
}
.l-footer .l-footer-top__left .-sns-list {
  width: 25px;
  height: 25px;
}
.l-footer .l-footer-top__right {
  margin-top: 30px;
}
.l-footer .l-footer-top__right ul {
  gap: 30px;
}
.l-footer .l-footer-top__right a {
  position: relative;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.l-footer .l-footer-top__right a::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  background-color: #fff;
  transition: all 0.3s ease;
}
.l-footer .l-footer-top__right a:hover::before {
  transform: scaleX(1);
}
.l-footer .l-footer-btm {
  margin-top: 5px;
  text-align: right;
}
.l-footer .l-footer-btm .-copy {
  color: #fff;
  font-family: "Noto Serif", serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer--inner {
    padding: 13.3333333333vw 0 13.3333333333vw;
  }
  .l-footer .l-footer-top__left .-logo {
    width: 40vw;
  }
  .l-footer .l-footer-top__left .-sns {
    margin-top: 8vw;
    gap: 4vw;
  }
  .l-footer .l-footer-top__left .-sns-list {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
  .l-footer .l-footer-top__right {
    margin-top: 13.3333333333vw;
  }
  .l-footer .l-footer-top__right ul {
    gap: 5.3333333333vw;
  }
  .l-footer .l-footer-top__right li {
    width: 100%;
  }
  .l-footer .l-footer-top__right a {
    font-size: 3.7333333333vw;
  }
  .l-footer .l-footer-top__right a::before {
    display: none;
  }
  .l-footer .l-footer-btm {
    margin-top: 16vw;
    text-align: left;
  }
  .l-footer .l-footer-btm .-copy {
    font-size: 3.4666666667vw;
  }
}

/*------------------------------------------------

c-ttl01

-------------------------------------------------*/
.c-ttl01.c-ttl01--center {
  text-align: center;
}
.c-ttl01 .c-ttl01-in {
  font-family: "Marcellus", serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
  color: #B8B8B8;
  letter-spacing: 0.08em;
}
.c-ttl01 .-jp {
  font-family: "Noto Serif", serif;
  margin-top: 10px;
  font-size: 26px;
  letter-spacing: 0.04em;
  display: block;
  color: #000;
}
@media screen and (max-width: 768px) {
  .c-ttl01 .c-ttl01-in {
    font-size: 3.2vw;
  }
  .c-ttl01 .-jp {
    font-size: 6.4vw;
    margin-top: 2.6666666667vw;
  }
}

/*------------------------------------------------

c-ttl02

-------------------------------------------------*/
.c-ttl02 .-jp {
  text-align: center;
  position: relative;
  font-family: "Noto Serif", serif;
  font-size: 26px;
  letter-spacing: 0.08em;
}
.c-ttl02 .-en {
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Marcellus", serif;
  font-size: 90px;
  letter-spacing: 0.08em;
  color: #E7E7E7;
  opacity: 0.8;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c-ttl02 .-jp {
    font-size: 5.8666666667vw;
  }
  .c-ttl02 .-en {
    font-size: 18.6666666667vw;
  }
}/*# sourceMappingURL=common.css.map */