@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500&display=swap');
section{overflow: hidden;}
.mt40{margin-top: 40px;}
.p_Cormorant_Garamond{
  font-family: 'Cormorant Garamond', serif;
}
.p_EB_Garamond{
  font-family: 'EB Garamond', serif;
}
.color_fff{
  color: #fff;
}
.bk_fff{
  background-color: #fff;
}

/* ====================================== */

.top_main_mv {
    display: flex;
    height: auto;
    min-height: 100vh;
}

.top_main_mv_area{
    background: #3b3b3b;
    flex: none;
    /* height: 100vh; */
    left: 0;
    margin: 0 0 0 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -2;
    max-width: 100%;

    transition: .3s cubic-bezier(.4,.4,0,1);
    word-spacing: 1px;
    overflow: hidden;
}
.top_main_mv_area_image:before {
    background-image: url(images/mv.jpg);
    filter: brightness(0.8);
    background-position: 50%;
    background-size: cover;
    border-radius: inherit;
    content: "";
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: inherit;
    width: 100%;
    z-index: -2;
    transform:scale(1.1);
}
.top_main_mv_area_box {
    align-content: center;
    align-items: center;
    background: rgba(0,0,0,0.0);
    border-bottom: 0px solid #FFFFFF;
    border-left: 20px solid #FFFFFF;
    border-radius: 0;
    border-right: 20px solid #FFFFFF;
    border-top: 20px solid #FFFFFF;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 920px;
    justify-content: center;
    width: 100%;
    z-index: -2;
    max-width: 100%;
}
/* ====================================== */


.main_catch{
  z-index: 9;
}
.main_catch h2{
  font-size: 32px;
  font-weight: 500;
  height: auto;
  letter-spacing: 0.2em;
  line-height: 1.4;
  margin: 0px 0px 15px 0px;
  padding: 0;
}
.main_catch p{
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  height: auto;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 0;
}
.main_mv{
  position: relative;
  height: 100vh;
  /* border-top: solid 20px #fff;
  border-left: solid 20px #fff;
  border-right: solid 20px #fff; */
  border: solid 20px #fff;
}
.mainimg{
  background-image: url(images/mv.jpg);
  background-attachment: fixed;
  filter: brightness(0.8);
  top: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.main_nav{
  position: fixed;
  width: 100%;
  background-color: #fff;
  padding: 0 20px;
}
.main_nav_h{
  height: 80px;
}
.sd_box{
  height: 100%;
  padding: 0px 0px 0px 0px;
  width: 540px;
  max-width: 100%;
}
.sd_box.p_Cormorant_Garamond{
  padding: 0px 0 0px 12px;
}
.sd_h2{
  color: #333;
  font-size: 20px;
  font-weight: 400;
  height: auto;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  text-align: left;
  width: auto;
  max-width: 100%;
  justify-content: flex-start;
}
.sd_p{
  color: #333;
  flex: none;
  font-feature-settings: 'palt' 1;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 30px 0px 0px 0px;
  padding: 0px 60px 0px 0px;
  text-align: left;
  width: auto;
  max-width: 100%;
  justify-content: flex-start;
}
/* === navi === */
.sp_nav{
  /* display: block; */
  /* position: absolute;
  top: 0;
  right: 0; */
}


.nav_h li::after{content: none;}
nav ul li a{
  /* color: #fff;
  padding: 1em; */
  color: #000000;
  /* font-family: var(--s-font-7f8e02f6); */
  font-size: 13px;
  font-weight: 300;
  height: auto;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 7px 15px 7px 15px;
  padding: 0px 0px 0px 0px;
  text-align: left;
  width: auto;
  /* max-width: calc(100% - 30px);
  justify-content: flex-start; */
}
nav ul li:last-of-type a{
  margin-right: 0;
}
/* === navi === */


/* =================== */
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger{
    opacity: 0;
}
/*背景色が伸びて出現（共通）*/
.bgextend{
  animation-name:bgextendAnimeBase;
  animation-duration:1s;
  animation-fill-mode:forwards;
  position: relative;
  overflow: hidden;/*　はみ出た色要素を隠す　*/
  opacity:0;
}
/*左から*/
.bgLRextend::before{
  animation-name:bgLRextendAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ff6600 0%, #ffa300 80%, #ffa300 100%);
  border-radius: 8px;
}
@keyframes bgLRextendAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  50% {
    transform-origin:left;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:right;
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}
@keyframes bgextendAnimeBase{
  from {opacity:0;}
  to {opacity:1;}
}
/* =================== */
.ttl_main{
  color: #333;
  font-size: 28px;
  font-weight: 400;
  height: 71px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin: 0px 0px 0px 0px;
  text-align: center;
  width: 100%;
  max-width: 100%;
}
.ttl_page{
  color: #333;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.4;
  margin: 30px 0px 30px 0px;
  text-align: center;
}
.ttl_news{
  text-align: left;
}
.ttl_single_date{
  color: #333;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 30px;
}
.ttl_name_footer{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  text-align: center;
}
.ttl_name_footer a{
  color: #aaaaaa;
}
.top_ul_gallery li{
  width: 49%;
  margin-bottom: 60px;
}
.top_ul_gallery li figure{
  height: 24vh;
  margin: 0px 0px 8px 0px;
}
.top_ul_gallery_ttl{
  color: #333;
  height: 86px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0px 0px 10px 0px;
  text-align: center;
}
.container_news{
  max-width: 950px;
  width: 60%;
  /* max-width: 950px;
  width: 92%; */
  margin: 0 auto;
}
.container_page{
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
}
.container_page figure{
  margin-bottom: 40px;
}
.container_page h2, .container_page h3{
  color: #333;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2;
  padding: 0px 10px 0px;
}
.container_page p{
  color: #333;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0px 0px 0px 0px;
  padding: 0px 10px 0px;
  line-height: 2.2;
}
.container_page td, .container_page th{
  color: #333;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0px 0px 0px 0px;
  padding: 4px 10px 4px;
  line-height: 2.2;
  vertical-align: top;
  border-bottom: solid 1px #eee;
}
.container_page th{
  width: 13%;
  text-align: left;
}
.container_page td p{
  font-size: 0.8em;
  background-color: #f9f9f9;
  padding: 0.6em;
}
.container_page ul{
  padding: 0px 0px 0px 5px;
  margin-top: 0.4em;
}
.container_page li{
  color: #333;
  font-size: 13px;
  font-weight: 400;
  list-style: inside;
  padding: 0px 0px 0px 10px;
  margin-top: 0.4em;
}
.container_page li::marker {
  font-size: 0.7em;
  color: #666;
}
.ul_info_time{
  color: #666666;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0px 25px 0px 0px;
  text-align: center;
  width: auto;
  max-width: calc(100% - 25px);
}
.ul_info_ttl{
  color: #333;
  flex: none;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0px 0px 7px 0px;
  width: auto;
}
.ul_info_txt{
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0px 0px 0px 0px;
  width: auto;
}
.container_footer{
  padding: 0px 0px 82px 0px;
  width: 70%;
  max-width: 70%;
  margin: 0 auto;
}
.ul_category {
  padding: 0 10px 0;
}
.ul_category li{
  width: calc(100% / 6);
  padding: 0 10px 30px 10px;
  height: 436px;
}
.ul_category li figure{
  height: 25vh;
  margin: 0px 0px 20px 0px;
}
.container1000 .ul_category li{
  width: calc(100% / 3);
}
.ul_category_nav{
  padding: 0 15px 45px;
}
.ul_category_nav li{
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding: 0 2em;
}
.cat_time{
  color: #333;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0px 0px 0px 0px;
  text-align: left;
}
.cat_info{
  color: #333;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0px 4px 0px 14px;
  text-align: left;
  max-width: calc(100% - 8px);
}
.cat_ttl{
  color: #333;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  margin: 10px 0px 0px 0px;
  text-align: left;
}

button.btn_next {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  height: auto;
  letter-spacing: 0.05em;
  line-height: 1.5;
  width: auto;
  max-width: 100%;
}
button.btn_next::before{
  content: '';
  background-image: url(images/icon_arrow-gray.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  position: absolute;
  display: block;
  top: -60px;
}
button.btn_next {
  display: block;
  background: #fff;
  color: #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  border-left: 0px solid #bfbfbf;
  border-right: 0px solid #bfbfbf;
  border-top: 0px solid #bfbfbf;
  width: 120px;
  max-width: 100%;
  text-align: left;
  margin: auto;
}
button.btn_next a{
  border-bottom: 0;
}
button.btn_next.btn_hover_move:hover a{
  border-bottom: 0;
}
button.btn_hover_move{
  transition: .3s cubic-bezier(.4,.4,0,1);
}
button.btn_next.btn_hover_move:hover{
  color: #333;
  border-bottom: 1px solid #000000;
  border-left: 0px solid #000000;
  border-right: 0px solid #000000;
  border-top: 0px solid #000000;
}
button.btn_next:hover::before{
  background-image: url(images/icon_arrow.svg);
}
button.btn_next:hover{
  position: relative;
  z-index: 3;
}
button.btn_hover_move:hover{
  transform: translate(5px, 0px);
}
.mw_wp_form input[type='text'], .mw_wp_form input[type='email'], .mw_wp_form textarea{
  font-family: 'Cormorant Garamond', serif;
  border-bottom: 1px solid #EEEEEE;
  border-left: 1px solid #EEEEEE;
  border-radius: 4px;
  border-right: 1px solid #EEEEEE;
  border-top: 1px solid #EEEEEE;
  box-shadow: none;
  color: #333;
  font-size: 15px;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0em;
  line-height: 1.4;
  margin: 0px 0px 0px 0px;
  opacity: 1;
  padding: 10px 10px 10px 10px;
  text-align: left;
  width: 100%;
  max-width: 100%;
}
.mw_wp_form input{
  height: 50px;
}
.mw_wp_form input:focus, .mw_wp_form textarea:focus{
    outline: none;
    background: #FFFFFF;
    border-bottom: 1px solid #626262;
    border-left: 1px solid #626262;
    border-right: 1px solid #626262;
    border-top: 1px solid #626262;
}
.mw_wp_form #submit-button input{
  background-color: #fff;
  border-bottom: 1px solid #aaaaaa;
  border-left: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  border-top: 1px solid #aaaaaa;
  box-shadow: 6px 6px 0px #EEEEEE;
  color: #333;
  font-size: 15px;
  justify-content: center;
  margin: 40px 0px 0px 0px;
  opacity: 1;
  padding: 15px;
  width: 100%;
  max-width: 100%;
}
.btn_privacy .mwform-checkbox-field{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.mw_wp_form .btn_privacy input{
  height: auto;
}

.mwform-checkbox-field label{
  display: inline-flex;
  align-items: center;
}
a.txt_privacy{
  margin-left: 0.4em;
  color: #8a8a8a;
  text-decoration: underline;
}
.btn_privacy{
  font-family: 'Cormorant Garamond', serif;
}
.mwform-checkbox-field input, .mwform-radio-field input{
  margin-right: 20px!important;
}
.container_page .mw_wp_form p{
  padding: 0;
}
.gallery_mv_li{
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.gallery_mv_li a{
  display: block;
  /* height: 80vh; */
  height: 100vh;
  width: 100%;
  padding: 0 80px 40px;
}
.gallery_mv_li_ttl{
  font-size: 90px;
  font-weight: 400;
  margin: 0;
  position: absolute;
  bottom: 0;
  color: #fff;
}
.gallery_mv_li_navi{
  margin: 0;
  padding: 0px 10px 0px 10px;
  width: 20%;
}
.gallery_mv_li_navi figure{
  height: 254px;
}
.gallery_mv_li_navi_ttl{
  margin: 8px 0 0;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
/*　lightbox　 */
.lightboxOverlay{
  background-color: #fff;
}
.lightbox .lb-image {
  border: 0;
  border-radius: 0;
}

@media(min-width:1024px) {
  nav{
    position: relative;
  }
  /* footer{margin-top: 4em;} */
  .header_ttl_mark{
    display: block;
    position: absolute;
    top: 0%;
    right: 0%;
  }

}
@media(max-width:1366px) {
  .ul_category li{
    width: calc(100% / 4);
    height: 386px;
  }
  .cat_ttl{
    font-size: 18px;
  }

}

@media(max-width:1024px) {}
@media(max-width:992px) {}
@media(min-width:769px){}
@media(max-width:768px){
  section{margin: 40px 0;}
  .section{padding: 40px 0;}
  .row{margin: 40px 0 0; position: relative;}
  .row:last-of-type{margin-bottom: 40px;}
  .main_nav_h{
    height: 50px;
  }
  .container_over{
    width: 110%;
    margin-left: -5%;
  }
  .container_news{
    width: 80%;
    margin-top: 30px;
  }
  .container_footer{
    padding: 0px 0px 25px 0px;
    width: 80%;
    max-width: 80%;
  }
  .container_page td, .container_page th{
    width: 100%;
    display: block;
  }
  .container_page p{
    padding: 0px 0px 0px;
  }
  .container_page h2, .container_page h3{
    padding: 0px 0px 0px;
  }
  .container_page th{
    border-bottom: 0;
  }
  .top_main_mv {
    min-height: 90vh;
  }
  .top_main_mv_area .ttl_center_top50 {
    top: 43%;
  }
  .top_main_mv_area_box{
    height: 800px;
  }
  .main_catch h2{
    font-size: 30px;
  }
  .main_catch p{
    font-size: 15px;
  }
  .ttl_main{
    /* font-size: 20px;
    height: 60px; */
    margin-bottom: 15px;
    height: auto;;
  }
  .ttl_page{
    /* font-size: 32px; */
    font-size: 20px;
  }
  .top_ul_gallery_ttl{
    font-size: 21px;
    height: 50px;
  }
  .ttl_single_date{
    font-size: 10px;
  }
  .top_ul_gallery li {
    margin-bottom: 0;
    width: 100%;
  }
  .top_ul_gallery li figure{
    height: 240px;
  }
  .sd_p{
    padding: 0;
    margin: 15px 0px 0px 0px;
  }
  .sd_box.p_Cormorant_Garamond{
    padding: 40px 0 0;
  }
  .ul_info_time{
    font-size: 11px;
    text-align: left;
    margin: 0px 0px 10px 0px;
  }
  .ul_info_ttl{
    font-size: 18px;
    line-height: 1.5;
    margin: 0px 0px 5px 0px;
  }
  .ul_info_txt{
    font-size: 14px;
    line-height: 1.5;
  }
  .ul_category li {
      width: calc(100% / 2);
      height: 350px;
  }
  .cat_ttl{
    font-size: 15px;
  }
  .ttl_name_footer{
    margin-bottom: 1em;
    text-align: left;
  }
  .footer_navi li{
    width: 100%;
    margin-bottom: 1em;
  }
  .tax-gallery_type .ul_category_nav{
    overflow-x: scroll;
    white-space: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0;
  }
  .tax-gallery_type .ul_category_nav ul{
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .ul_category_nav li{
    /* width: 100%; */
    text-align: center;
    /* font-size: 20px; */
    margin: 5px 5px 5px 5px;
    padding: 10px 9px 10px;
  }
  .gallery_mv_li a{
    height: 60vh;
  }
  .gallery_mv_li_ttl{
    font-size: 48px;
    left: 10%;
  }
  .gallery_mv_li_navi{
    width: 50%;
    margin-bottom: 2em;
  }
  .gallery_mv_li_navi figure {
    height: 130px;
  }
  .gallery_mv_li_navi_ttl{
    font-size: 1.2em;
  }

}
@media(max-width:480px){}
