html,body{
  font-family: "Noto Sans JP", "Hiragino Sans" , "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, "游ゴシック Medium", YuGothic, YuGothicM, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #000;
  line-height: 2;
  letter-spacing: 0.06em;
}
a{
  color: #000;
  transition: opacity 0.3s, color 0.3s;
}
a:hover{ opacity: 0.7; }
img,picture{
	max-width: 100%;
	display: block;
}
.overflow{ overflow: hidden; }

.bg-gl{
  background: #A87F11;
  color: #fff;
}
.bg-bk{
  background: #000;
  color: #fff;
}
.bg-or{
  background: #DA5014;
  color: #fff;
}
.bg-wh{
  background: #fff;
  color: #000;
}
.gl{
  color: #A87F11;
}
.bg-bk .gl{
  color: #C1A762;
}
.or{
  color: #DA5014;
}

.bg-sand{
  background: url(../images/common/bg-sand.png) center center;
  background-size: 24rem auto;
  color: #000;
}
.bg-sand-gr{
  background: url(../images/common/bg-sand-gr.png) center center;
  background-size: 24rem auto;
}
.bg-sand.bg-be{
  position: relative;
}
.bg-sand.bg-be::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(223,214,184,0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  mix-blend-mode: multiply;
}

.sans{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.serif{
  font-family: "Marcellus", "Noto Serif JP", serif;
  font-weight: 500;
}
.en{
  font-family: "Marcellus", "Noto Sans JP", serif;
  font-weight: 400;
}




.home{
  background: #000;
  color: #fff;
}
.home .nav a{ color: #fff; }

.anchor{
  margin-top: -6rem;
  padding-top: 6rem;
}

.nav{
  width: 100%;
  height: 12rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 996;

  display: flex;
  justify-content: flex-start;
  align-items: center;
}
a.nav-logo{
  display: block;
  width: min(17.86vw,25rem);
  background: url(../images/common/logo.png) center center no-repeat;
  background-size: contain;
  aspect-ratio: 100 / 33.74;
  margin-left: 2rem;
  position: relative;
  z-index: 2;
}
.home .nav > a.nav-logo{
  background: url(../images/common/logo_w.png) center center no-repeat;
  background-size: contain;
}
.nav ul.nav-li{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 10rem 0 auto;
}
.nav ul.nav-li li{
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
}
.nav ul.nav-li li small{
  display: block;
  font-size: 1.2rem;
}
.nav ul.nav-li li + li{
  margin-left: min(2.14vw,3rem);
}
a.nav-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8em;
  line-height: 3.8rem;
  border: 1px solid;
  font-size: 1.5rem;
}
a.nav-btn::after{
  content: "";
  display: block;
  width: 1.2em;
  height: 0;
  border-top: 1px solid;
  margin-left: 0.8rem;
}


#nav-open {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 2rem;
  z-index: 999;
}
#nav-open span,#nav-open span:before,#nav-open span:after {
  content: "";
  display: block;
  background: #000;
  height: 1px;
  width: 3.8rem;
  position: absolute;
  transition: .3s ease-in-out;
}
.home #nav-open span,.home #nav-open span:before,.home #nav-open span:after {
  background: #fff;
}
#nav-open span{
  transition: background 0s .15s;
}
#nav-open span:before {
  bottom: 1rem;
  transform: rotate(0);
  transition: bottom .15s .15s, transform .15s, background .3s;
}
#nav-open span:after {
  bottom: -1rem;
  transform: rotate(0);
  transition: bottom .15s .15s, transform .15s, background .3s;
}

#nav-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;

  overflow-y: scroll;
  overscroll-behavior: contain;
  -ms-overflow-style: none; /* バー非表示 IE・Edge用 */
  scrollbar-width: none; /* バー非表示 Firefox用 */

  pointer-events: none;
  z-index: 997;
}
#nav-content {
  display: block;
  width: 100%;
  max-width: 39rem;
  height: 100%;
  background: #000;
  color: #fff;
  padding: 14rem 0 6rem;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 998;

  overflow-y: scroll;
  overscroll-behavior: contain;
  -ms-overflow-style: none; /* バー非表示 IE・Edge用 */
  scrollbar-width: none; /* バー非表示 Firefox用 */

  transform: translateX(100%);
  transition: transform .3s;
}
#nav-content a{ color: #fff; }
#nav-bg::before,
#nav-content::before{
  content: "";
  display: block;
  width: 1px;
  height: calc(100% + 1px);
  position: absolute;
  left: 0;
  top: 0;
}
/* バー非表示 Chrome・Safari用 */
#nav-bg::-webkit-scrollbar,
#nav-content::-webkit-scrollbar{
  display: none;
}
#nav-bg.active {
  pointer-events: inherit;
}
#nav-content.active {
  transform: translateX(0%);
}
#nav-open.active span {
  background: transparent;
}
#nav-open.active span:before {
  background: #fff;
  bottom: 0;
  transform: rotate(-30deg);
  transition: bottom .15s, transform .15s .15s;
}
#nav-open.active span:after {
  background: #fff;
  bottom: 0;
  transform: rotate(30deg);
  transition: bottom .15s, transform .15s .15s;
}


#nav-content a.nav-logo{
  width: 14rem;
  aspect-ratio: 100 / 33.74;
  background: url(../images/common/logo_hum.png) center center no-repeat;
  background-size: contain;
  margin-left: 0;
  position: absolute;
  left: 2rem;
  top: 3.6rem;
}
#nav-content .content{
  padding: 0 2.8rem;
}
#nav-content a.nav-btn{
  width: 9.2rem;
  line-height: 2.4rem;
  font-size: 1.2rem;
  letter-spacing: 0;
  color: #fff;
  position: absolute;
  right: 10rem;
  top: 4.8rem;
}
ul.hum-nav li + li{
  margin-top: 1.2rem;
}
ul.hum-nav li:has( a.bg-or) + li{
  margin-top: 2rem;
}
ul.hum-nav li a{
  display: block;
  width: fit-content;
  font-size: 1.8rem;
  line-height: 1.4;
  padding: 0 2rem;
}
ul.hum-nav li a.bg-or{
  padding: 0.3em 2rem;
  border-radius: 3rem;
}
ul.hum-nav li a small{
  display: block;
  font-size: 1.2rem;
}
ul.hum-sns{
  margin: 3rem 2rem 0;
  font-size: 1.8rem;
}
ul.hum-sns li + li{
  margin-top: 0.2em;
}
ul.hum-sns li a{
  display: flex;
  align-items: center;
  width: fit-content;
}
ul.hum-sns li a::before{
  content: "";
  display: block;
  width: 1.8rem;
  height: 0;
  border-top: 1px solid #707070;
  margin-right: 1rem;
}


/* nav付加クラス　*/
@keyframes nav-fade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes nav-anime {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.nav,
#nav-open{
  animation: nav-fade 1s;
}
.nav.transform,
#nav-open.transform{
  animation: nav-anime 0.6s;
}
.nav.transform{
  height: 6rem;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
}
.nav.transform a{ color: #fff; }
.nav.transform a.nav-logo{
  width: 14.8rem;
  background: url(../images/common/logo_w.png) center center no-repeat;
  background-size: contain;
}
.nav.transform ul.nav-li li{
  font-size: 1.6rem;
}
.nav.transform ul.nav-li li + li{
  margin-left: 2rem;
}
#nav-open.transform{
  height: 6rem;
  top: 0;
  position: fixed;
}
#nav-open.transform span,#nav-open.transform span:before,#nav-open.transform span:after {
  background: #fff;
}
#nav-open.transform.active span {
  background: transparent;
}
#nav-content.transform a.nav-logo{
  top: 0.64rem;
}
#nav-content.transform a.nav-btn{
  top: 1.7rem;
}
#nav-content.transform {
  padding-top: 11rem;
}


.content{
  position: relative;
  z-index: 1;
}


.ttl-1{
  font-family: "Marcellus", "Noto Sans JP", serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 5rem;
}
.ttl-1::after{
  content: "";
  display: block;
  width: 4rem;
  height: 0;
  border-top: 1px solid #707070;
  margin: 3rem auto 0;
}
.ttl-1.left{
  text-align: left;
}
.ttl-1.left::after{
  margin-left: 0;
}
.ttl-1.serif{
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
.ttl-1 small{
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-left: 1em;
}
.ttl-1.wh{
  color: #fff;
}
.ttl-1.wh::after{
  border-top: 1px solid #fff;
}


.red-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46rem;
  height: 7.2rem;
  border-radius: 1rem;
  background: #950202;
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  margin: 8rem auto 0;
}
.red-btn::after{
  content: "";
  display: block;
  width: 6rem;
  height: 0;
  border-top: 1px solid;
  margin-left: 1.8rem;
}


.n-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 31rem;
  height: 5.8rem;
  border-radius: 1rem;
  background: url(../images/common/bg-sand.png) center center;
  background-size: 24rem auto;
  border: none;
  color: #000;
  font-size: 1.8rem;
  text-align: center;
  margin: 3.4rem auto 0;
  transition: opacity 0.3s;
}
.n-btn::after{
  content: "";
  display: block;
  width: 4rem;
  height: 0;
  border-top: 1px solid;
  margin-left: 2.7rem;
}
.n-btn:hover{
  opacity: 0.7;
}
.n-btn.bg-bk{
  background: #000;
  color: #fff;
}
.n-btn.bg-wh{
  background: #fff;
  border: 1px solid;
}


a.ext::after{
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  background: url(../images/common/ico-ext_w.svg) center center no-repeat;
  background-size: contain;
  margin-left: 0.5em;
  vertical-align: -0.15em;
}


.common-header{
  padding: 20rem 0 0;
}
.common-header.bg-sand{
  padding-bottom: 4rem;
}
.common-header .ttl-1{
  font-size: 4rem;
  margin-bottom: 0;
  white-space: nowrap;
}


#fl-sns{
  display: flex;
  align-items: center;
  gap: 4rem;
  writing-mode: vertical-rl;
  position: fixed;
  left: 1rem;
  bottom: 3rem;
  z-index: 997;
  mix-blend-mode: difference;
}
#fl-sns a{
  display: flex;
  align-items: center;
  color: #fff;
}
#fl-sns a::before{
  content: "";
  display: block;
  width: 0;
  height: 1.8rem;
  border-right: 1px solid;
  margin-bottom: 1rem;
}


.sec{
  padding: 4rem 0 15rem;
}


.date-cat{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 0.5rem;
  row-gap: 0.2rem;
}
.date-cat .date{
  margin-right: 0.5rem;
}
.cat{
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 0 0.2em;
  border: 1px solid;
}
.cat.event{ color: #DA5014; }
.cat.other{ color: #042055; }


.tag-wrap{
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.8em;
  font-size: 1.4rem;
}
.tag-wrap .tag::before{
  content: "#";
}


.zoom{
  display: block;
  overflow: hidden;
  will-change: transform;
}
.zoom img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
a.zoom:hover img,
a:hover .zoom img{
  transform: scale3d(1.11,1.11,1.11);
}


.modal{
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.modal_bg{
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;

  overflow-y: scroll;
  overscroll-behavior: contain;
  -ms-overflow-style: none; /* バー非表示 IE・Edge用 */
  scrollbar-width: none; /* バー非表示 Firefox用 */
}
.modal_content{
  width: 110rem;
  max-width: 92%;
  max-height: 90%;
  padding: 3.5rem 0 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  
  overflow-y: scroll;
  overscroll-behavior: contain;
  -ms-overflow-style: none; /* バー非表示 IE・Edge用 */
  scrollbar-width: none; /* バー非表示 Firefox用 */
}
.modal_bg::before,
.modal_content::before{
  content: "";
  display: block;
  width: 1px;
  height: calc(100% + 1px);
  position: absolute;
  left: 0;
  top: 0;
}
/* バー非表示 Chrome・Safari用 */
.modal_bg::-webkit-scrollbar,
.modal_content::-webkit-scrollbar{
  display: none;
}
.modal a.js-modal-close{
  display: block;
  width: 2.5rem;
  position: absolute;
  right: 0;
  top: 0;
}
.modal a.js-modal-close img{
  width: 100%;
}


.common-contact{
  background: #000;
  color: #fff;
  padding: 6rem 0 10rem;
}
.common-contact p{
  font-size: 1.8rem;
  width: 74rem;
  margin: 0 auto 7rem;
}
.common-contact .btn-wrap{
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
.common-contact .btn-wrap .n-btn{
  margin: 0;
}


footer{
  font-size: 1.5rem;
  padding: 6rem 0 4rem;
}
footer a{
  color: #fff;
}
footer ul li{
  display: block;
}
footer .wrap-1{
  display: flex;
  justify-content: flex-end;
}
footer .wrap-2{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer .wrap-1 a.logo{
  display: block;
  width: 26rem;
  margin-right: auto;
}
footer .wrap-1 ul.f-nav{
  margin-right: 4rem ;
}
footer .wrap-1 ul.f-nav li + li,
footer .wrap-1 ul.f-sns li + li{
  margin-top: 0.2em;
}
footer .wrap-1 ul.f-sns li a{
  display: flex;
  align-items: center;
  width: fit-content;
}
footer .wrap-1 ul.f-sns li a::before{
  content: "";
  display: block;
  width: 1.8rem;
  height: 0;
  border-top: 1px solid #707070;
  margin-right: 1rem;
}
footer .wrap-2{
  margin-top: 9rem;
}
footer .wrap-2 ul.f-low{
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}




/* ロード画面 */
#loading {
  width: 100%;
  height: 100%;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading img {
  width: 24rem;
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s;
}




/*　PC
------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 769px){
.sp{ display: none !important; }

html{ font-size: 10px; }
body{ font-size: 1.6rem; }

.content{
  width: 100%;
  max-width: 110rem;
  padding: 0 5rem;
  margin: 0 auto;
}
.content.w106{
  max-width: 116rem;
}
.content.w80{
  max-width: 90rem;
}




/*　タブレット
------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1100px){

html{ font-size: 0.9vw; }




}/*　タブレットここまで */
}/*　PCここまで */




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

html{ font-size: 2.56vw; }
body{ font-size: 1.6rem; }

.content{
	width: 100%;
	padding: 0 2.8rem;
}

.bg-sand{
  background: url(../images/common/bg-sand.png) center center;
  background-size: 15rem auto;
}
.bg-sand-gr{
  background: url(../images/common/bg-sand-gr.png) center center;
  background-size: 15rem auto;
}


.nav{
  height: 8.6rem;
}
a.nav-logo{
  width: 14rem;
}
.nav ul.nav-li{
  margin: 0 8.6rem 0 auto;
}
a.nav-btn{
  width: 9.2rem;
  line-height: 2.4rem;
  font-size: 1.2rem;
  letter-spacing: 0;
}


#nav-open {
  width: 8.6rem;
  height: 8.6rem;
  right: 0;
  top: 0;
}
#nav-content {
  max-width: 100%;

  transform: translateX(0);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
#nav-content.active {
  opacity: 1;
  pointer-events: unset;
}


/* nav付加クラス　*/
.nav.transform a.nav-logo{
  width: 14rem;
}


#nav-content a.nav-logo{
  width: 14rem;
  left: 2rem;
  top: 1.9rem;
}
#nav-content a.nav-btn{
  right: 8.6rem;
  top: 3rem;
}


.ttl-1{
  font-size: 1.8rem;
  margin-bottom: 4rem;
}
.ttl-1::after{
  width: 2.8rem;
  margin: 2rem auto 0;
}
.ttl-1.serif{
  font-size: 1.6rem;
}


.red-btn{
  width: 26.4rem;
  height: 4.2rem;
  border-radius: 0.3rem;
  font-size: 1.4rem;
  margin: 6rem auto 0;
}
.red-btn::after{
  width: 3.3rem;
  margin-left: 1rem;
}


.n-btn.sp-sm{
  width: 19.4rem;
  height: 3.6rem;
  border-radius: 0.3rem;
  background: url(../images/common/bg-sand.png) center center;
  background-size: 15rem auto;
  font-size: 1.2rem;
  margin: 3rem auto 0;
}
.n-btn.sp-sm::after{
  width: 2.5rem;
  margin-left: 1rem;
}


.common-header{
  padding: 13rem 0 0;
}
.common-header .ttl-1{
  font-size: 2.5rem;
}
.common-header .ttl-1::after{
  margin-top: 3rem;
}
.common-header .ttl-1 small{
  display: block;
  margin: 0.6em 0 0;
}


.sec{
  padding: 4rem 0 15rem;
}


.common-contact{
  font-size: 1.2rem;
  padding: 6rem 0;
}
.common-contact p{
  font-size: 1.1rem;
  width: 28.7rem;
  margin: 0 auto 4rem;
}
.common-contact .btn-wrap{
  flex-wrap: wrap;
  gap: 1rem;
}


footer{
  font-size: 1.2rem;
  padding: 3rem 0;
}
footer .wrap-1{
  display: block;
}
footer .wrap-1 a.logo{
  width: 18.2rem;
  margin-bottom: 3rem;
}
footer .wrap-1 ul.f-nav{
  margin: 0 0 1em;
}
footer .wrap-2{
  margin-top: 7rem;
}
footer .wrap-2 ul.f-low{
  flex-direction: column;
  gap: 0;
}




}/*　スマホここまで */



