@charset "utf-8";
*,*::before,*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1;
  background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol, li {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after,q::before, q::after {
  content: '';
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  transition: 0.3s;
  color: var(--color-txt);
  word-break: break-word;
  overflow-wrap: break-word;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: 0;
}
figure img {
  width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
  font-weight: 600;
  line-height: 1em;
  font-size: 1em;
}
p {
  line-height: 1.6em;
}
small {
    font-size: 0.875em;
}
strong {
	font-size: 1.25em;
	font-weight: 700;
}
b {
	font-weight: 700;
}
a img {
    transition: 0.3s;
}
a.txtlink {
    text-decoration: underline;
}
a.txtlink:hover {
    text-decoration: none;
}
li figure {
  margin: 0;
}
.clear {
    clear: both;
    display: block;
    overflow: hidden;
}
p.clear {
    margin-bottom: 1em;
}
p:has(small) {
  line-height: 1.6em;
}
.textleft { text-align: left; }
.textright { text-align: right; }
.textcenter { text-align: center; }
/** list **/
.list > li {
	padding-left: 1em;
  line-height: 1.6em;
	position: relative;
}
.list > li::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.list.list-maru > li::before {
	content: "●";
}
.list.list-nom > li::before {
	content: "・";
}
.list.list-note > li::before {
	content: "※";
}
i {
    font-family: "Font Awesome 5 Free","Fontawesome";
}
/*--------------------------------------------------------------
## layout
--------------------------------------------------------------*/
:root {
    --base-font-size: 1.6rem;
    --base-font-family: "Noto Serif JP", serif;
    --font-en: "Cormorant Garamond", serif;
    --min-viewport: 375;
    --layout-min-width: 750;
    --layout-max-width: 1200;
    --max-viewport: 1640;
}
html {
    font-size: calc(10 / var(--min-viewport) * 100vw);
    -webkit-text-size-adjust: 100% !important;
}
@media screen and (min-width: 768px) {
    html { font-size: calc(10 / var(--layout-max-width) * 100vw); }
}
@media screen and (min-width: 1201px) {
    html { font-size: 62.5%; }
}
body {
    font-family: var(--base-font-family);
    font-size: var(--base-font-size);
    background-color: #000;
    font-optical-sizing: auto;
    line-height: 1.6em;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.2em;
    color: white;
}
.wrapper {
    overflow: hidden;
}
.content {
    display: block;
    padding-left: 1.5em;
    padding-right: 1.5em;
}
.txt-en {
    font-family: var(--font-en);
}
/** inview **/
.fade-in, .fade-up {
    opacity: 0;
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in.inview, .fade-up.inview {
    opacity: 1;
    transform: translateX(0) translateY(0);
}
.fade-up { transform: translateY(2em); }
/** hero **/
.hero {
    width: 100%;
    height: 100vh;
    position: relative;
}
.hero__inner {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    text-align: center;
}
.hero__inner .hero_logo img {
    display: block;
    margin: 0 auto 4em auto;
}
.hero__inner .hero_cap {
    font-size: 2em;
    letter-spacing: .2em;
}
.section-access__info {
    padding-top: 3em
}
.section-access__info h2 {
    font-size: 1.5em;
    margin-bottom: 1.5em;
}
.info__txt li {
    margin: 1em 0;
}
.instagram-link {
    margin-top: 5em;
}
.instagram-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}
.instagram-link a:hover {
    opacity: .7;
}
.access_map iframe {
    width: 100%;
    height: 28rem;
}
.section-access__info li {
    font-size: 1.4rem;
}
footer {
    padding: 5em 0;
}
footer .copy {
    font-size: 1rem;
    color: white;
    text-align: center;
}
@media only screen and (max-width: 750px){
	.sp {  display: block;}
    .pc { display: none;}
    .section-access__info h2 {
        text-align: center;
    }
}
@media only screen and (min-width: 751px){
    .sp { display: none;}
    .pc { display: block;}
    .content {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
    .access_map iframe {
        height: 40rem;
    }
}


