@charset "UTF-8";
@import url("under.css");
:root {
  --fnt-base:"noto-sans-cjk-jp", sans-serif;
  --fnt-fv:"fractul-variable", sans-serif;
  --fnt-ftr:"futura-pt", sans-serif;
  --fnt-fv_w250:"wght" 250;
  --fnt-fv_w400:"wght" 400;
  --fnt-fv_w700:"wght" 700;
  --fc-base:#707070;
  --clr-ylw:#FDD16E;
  --clr-d-ylw:#EFB93F;
  --clr-beg: #EBDFD4;
  --clr-gry: #E0E0E0;
  --clr-d-gry:#ACACAC;
  --bdr-gry: #F5F5F5;
  --bdr-dp-gry:#707070;
  --box-sdw: 0 3px 6px rgba(0, 0, 0, .16);
  
  --wall-ylw:rgba(255,244,219,1);
  --wall-gry:#FAFAFA;
  --easing: cubic-bezier(0.45, 0.05, 0.55, 0.95);
  --transit: .6s var(--easing);
}
body {
  font-size: min(13px, 3.5vw);
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-wrap: anywhere;
  width: 100%;
  overflow-x: hidden;
  min-height: 100%;
  font-family: var(--fnt-base);
  color: var(--fc-base);
  opacity: 0;
  transition: opacity .6s var(--easing);
}
body.is-load {
  opacity: 1;
}
a.cvr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.fc-ylw{
  color: var(--clr-d-ylw);
}
.fc-blk{
  color: #000;
}
/* container +++++++++++++++++++++++++++++++++++++++++++++++*/
#container {
  width: 100%;
  min-height: 100dvh;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  overflow-x: hidden;
}
/*header ++++++++++++++++++++++++++++++++++++*/
header {
  width: 100%;
  box-shadow: var(--box-sdw);
  background: #fff;
  height: min(90px, 16.54vw);
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  transition: all .5s var(--easing);
}
header.is-shrink {
  height: min(60px, 14vw);
}
header.nav-open{
  height:min(90px, 16.54vw);
}
.header_inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding-left: min(50px, 4vw);
  padding-right: min(50px, 4vw);
  -ms-align-items: center;
  align-items: center;
  height: 100%;
  width: 100%;
  gap: min(40px, 3vw);
}
.h-logo {
  width: min(136px, 20vw);
  transition: all var(--transit);
}
header.is-shrink .h-logo{
  width: min(110px, 18vw);
}
header.nav-open .h-logo{
  width: min(82px, 18vw);
}
.h-social {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap: 10px;
  color: var(--clr-ylw);
}
.h-social a {
  width: min(20px, 8vw);
  transition:opacity var(--transit);
}
.h-social svg{
  fill:currentColor;
}
.head-nav_wrap {
  margin-left: auto;
}
.g-nav li {
  color: var(--clr-beg);
  /*mix-blend-mode: difference;*/
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap:5px min(20px, 1.5vw);
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.g-nav li > a {
  font-size: min(12px, 3.2vw);
  font-style: italic;
  font-family: var(--fnt-fv);
  transition:opacity var(--transit);
}
@media(hover){
  .g-nav li > a:hover
  ,.h-social a:hover{
    opacity: .65;
  }
}
/*humhum ++++++++++*/
#hum-button{
  width: min(30px,7vw);
  aspect-ratio:1;
  display: none;
  cursor: pointer;
  margin-left: auto;
}
#hum-button button{
  width: 100%;
  height: 2px;
  mix-blend-mode: difference;
  background: currentColor;
  border-radius: 3px;
  position: relative;
  color: #fff;
  transition:all var(--transit);
}
#hum-button button::before
,#hum-button button::after{
  content: "";
  width: 100%;
  height: 2px;
  background: currentColor;
  position: absolute;
  left: 0;
  transition:all var(--transit);
}
#hum-button button::before{
  top: -8px;
}
#hum-button button::after{
  top: 8px;
}
#l-nav{
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  height: 100dvh;
  overflow-y: scroll;
  background: var(--wall-ylw);
  opacity: 0;
  visibility: hidden;
  transition: all .5s var(--easing);
}
.l-nav_inner{
  width: min(600px,100%);
  margin-left: auto;
  margin-right: auto;
  padding: min(150px,25vw) min(50px,4vw) min(50px,15vw);
  min-height: 100%;
}
.l-nav__social{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap:10px;
}
.l-nav__social a{
  width: min(20px,10vw);
}
.l-nav__menu{
  margin-top: min(50px,12vw);
}
.l-nav__menu .contents-nav{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  gap:min(24px,10vw);
}
.l-nav__menu .contents-nav a{
  font-size: min(24px,4.5vw);
  font-family: var(--fnt-fv);
  font-style: italic;
  color: #000;
}
header.nav-open{
  background: none;
  box-shadow: none;
}
#hum-button.open button{
  mix-blend-mode: normal;
  color: #000;
  rotate:45deg;
}
#hum-button.open button::before{
  rotate:-90deg;
  top: 0;
}
#hum-button.open button::after{
  bottom: auto;
  top: 0;
  rotate:-90deg;
}
/*main ++++++++++++++++++++++++++++++++++++++*/
main {
  flex: 1;
}
.inner {
  width: min(1200px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: min(50px, 4vw);
  padding-right: min(50px, 4vw);
}
.inner.min{
  width: min(900px,100%);
}
.fl{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.fl_c{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.ai_c{
  -ms-align-items: center;
  align-items: center;
}
.sec-title{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-end;
  align-items: flex-end;
  gap:10px;
  --title-clr:#000;
  --link-clr:#000;
}
.sec-title.ylw{
  --title-clr:var(--clr-ylw);
  --link-clr:var(--fc-base);
}
.sec-title .main{
  color: var(--title-clr);
  font-size: min(45px,calc(100vw/10));
  font-style: italic;
  font-family: var(--fnt-fv);
  font-variation-settings:var(--fnt-fv_w250); 
}
.sec-title .more-link{
  font-size: min(11px,3.2vw);
  width: 7em;
  translate:0 -25%;
  font-family: var(--fnt-fv);
  font-variation-settings:var(--fnt-fv_w400); 
  color: var(--link-clr);
}
.sec-title .more-link a{
  display: block;
  text-align: right;
  padding-bottom: 5px;
}
.sec-title .more-link a::after{
  content: "";
  width: 100%;
  height: 1px;
  background: var(--bdr-dp-gry);
  position: absolute;
  right: 0;
  bottom: 0;
  scale:1 1;
  transition:scale var(--transit);
  transform-origin: right bottom;
}
@media(hover){
  .sec-title .more-link a:hover::after{
    scale:.625 1;
  }
}
/*hero +++++++++++++++++++++++*/
.index-hero {
  padding-top: min(20px, 3vw);
}
.index-hero::before {
  content: "";
  width: min(528px, 100vw);
  aspect-ratio: 1;
  background: url("/image/tbb_template/h1key/wall/pale_ylw_circle.svg") no-repeat center/cover;
  position: absolute;
  right: 0;
  top: 0;
  translate: 25% -35%;
}
.hero-img {
  width: calc(100% - min(90px, 5vw));
  height: 720px;
  overflow: hidden;
}
.hero-img figure {
  height: 100%;
}
.hero-img img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}
/*index contents +++++++++++++++++++++++++++++++++++*/
/*banner +++++*/
.banner-slide-wrap {
  padding-right: min(30px, 4vw);
  /*
  margin-top: max(-70px, -10vw);
  */
  margin-top: 30px;
  margin-left: max(calc((100vw - 1100px)/2), 4vw);
}
#banner-slider {
  width: 100%;
  overflow: hidden;
}
.banner-pagination {
  margin-top: min(15px, 5vw);
  
}
.slide-pagination{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap: 10px;
  z-index: 1;
  bottom: 0!important;
}
.slide-pagination .swiper-pagination-bullet {
  width: 25px;
  height: 2px;
  background: #fff;
  overflow: hidden;
  border-radius: 0;
  opacity: 1;
  transition: width .3s var(--easing);
  margin: 0 !important;
}
.slide-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: min(60px, 15vw);
}
.slide-pagination .swiper-pagination-bullet::after {
  content: "";
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, var(--clr-ylw) 50%, var(--clr-gry) 50%);
  position: absolute;
  left: 0;
  top: 0;
  translate: -50% 0;
  transition: translate var(--transit);
}
.slide-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  translate: 0 0;
}
.banner-navgation {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding-left: min(50px,4vw);
  padding-right: min(80px,7vw);
  z-index: 10;
  pointer-events: none;
  translate: 0 -50%;
  display: flex;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.slide-nav-button {
  pointer-events: auto;
  width: min(70px, 15vw);
  aspect-ratio: 1;
  font-size: 11px;
  color: #000;
  position: relative;
  display: grid;
  place-content: center;
  font-family: var(--fnt-fv);
  font-variation-settings:var(--fnt-fv_w400);
}
.slide-nav-button::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: rgba(255, 255, 255, .2);
  border-radius: 100vmax;
  transition: scale .3s var(--easing);
  backdrop-filter: blur(5px) brightness(1.05);
  -webkit-backdrop-filter: blur(5px) brightness(1.05);
}
.banner-next-button {
  margin-left: auto;
}
@media(hover) {
  .slide-nav-button:hover::before {
    scale: 1.42;
  }
}
/*news +++++*/
.index-news-blc {
  margin-top: min(110px, 20vw);
  padding-bottom: min(80px,15vw);
}
.index-news-blc .archive-info-list{
  margin-top: min(20px,5vw);
}
.archive-info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.acv-info-item {
  border: 1px solid var(--bdr-gry);
  padding: min(24px,5vw) min(20px,3vw);
  transition:border var(--transit);
}
.post-data{
  font-size: min(11px,3.4vw);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap:1em;
  font-family: var(--fnt-ftr);
}
.post-data .category{
  color: var(--clr-ylw);
}
.post-data .tag{
  color: var(--clr-ylw);
  margin-left: auto;
}
.acv-info-item .post-title{
  margin-top: 5px;
  line-height: calc(18/13);
}
@media(hover){
  .acv-info-item:hover{
    border-color: var(--clr-ylw);
  }
}

/*photo +++++*/
.top-wave-wrapper{
  padding-top:calc((100vw*0.0732) + min(100px,12vw));
  background:url("/image/tbb_template/h1key/wall/btm_wave_wht.svg") no-repeat top center/100%;
  background-color: var(--wall-ylw);
}
.btm-wave-wrapper{
  padding-bottom:calc((100vw*0.0732) + min(100px,12vw));
  background:url("/image/tbb_template/h1key/wall/top_wave_wht.svg") no-repeat bottom center/100%;
  background-color: var(--wall-ylw);
}
.index-photo-blc{
  padding-bottom: min(50px,12vw);
}
.archive-photo-list{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap:min(20px,3vw);
  margin-top: min(30px,10vw);
}
.acv-photo-item .thumb{
  aspect-ratio:1;
  overflow: hidden;
  transition:opacity var(--transit);
  transition-delay: .25s;
}
.acv-photo-item .thumb img{
  object-fit: cover;
  height: 100%;
  object-position: center;
}
.acv-photo-item .detail{
  color: #000;
  margin-top: 5px;
}
.acv-photo-item .post-title{
  line-height: calc(18/13);
  margin-top: 5px;
}
@media(hover){
  .acv-photo-item:hover .thumb{
    opacity: .75;
  }
}
/*movie*/
.index-movie-blc{
  padding-top: min(50px,12vw);
}
.box-movie_contents{
  display: grid;
  grid-template-columns: min(640px,58%) auto;
  gap:min(20px,5vw);
}
.movie__player{
  overflow: hidden;
}
.movie-navgation{
  display: flex;
  gap:min(20px,4vw);
  margin-top: min(25px,5vw);
}
.acv-movie-item .movie-thumb figure{
  border-radius: 5px;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio:1/0.5625;
  filter: brightness(1);
  transition:filter var(--transit);
}
.acv-movie-item .movie-thumb figure img{
  object-fit: cover;
  height: 100%;
  object-position: center;
}
.hvr-play{
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-family: var(--fnt-fv);
  font-size: min(15px,3.4vw);
  transition:opacity var(--transit);
  opacity: 0;
  display: grid;
  width: 100%;
  height: 100%;
  place-content:center;
}
.hvr-play::before{
  content: "";
  border: 1px solid currentColor;
  border-radius: 100vmax;
  height: 50%;
  aspect-ratio:1;
  position: absolute;
  top: 50%;
  left: 50%;
  translate:-50% -50%;
  transition:scale var(--transit);
  scale:0 0;
}
.swiper-slide.acv-movie-item .hvr-play::before{
  height: 68.89%;
}
.acv-movie-item .movie-title{
  margin-top: 10px;
}
@media(hover){
  .acv-movie-item:hover figure{
    filter: brightness(.4);
  }
  .acv-movie-item:hover .hvr-play{
    opacity: 1;
  }
  .acv-movie-item:hover .hvr-play::before{
    scale:1 1;
  }
}

/*footer +++++++++++++++++++++++++++++++*/
footer{
  padding-top: min(60px,12vw);
  padding-bottom: 15px;
  color: #000;
}
.under-footer{
  padding-top:min(157px,30vw);
  background: url("/image/tbb_template/h1key/wall/top_wave_ylw.svg") repeat-x top center/auto min(100px, 12vw),linear-gradient(rgba(255,244,219,0) min(100px, 12vw),rgba(255,244,219,1) min(100px, 12vw));
}
.footer-inner{
  gap:min(60px,10vw);
  padding-bottom: min(24px,6vw);
}
.foot-logo{
  width: min(200px,50vw);
}
.foot-nav{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  font-weight: 500;
  gap:15px 1.8em;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.foot-nav a{
  transition:opacity var(--transit);
}
.copy{
  font-family: var(--fnt-fv);
  font-size: min(11px,3.2vw);
  text-align: center;
}
@media(hover){
  .foot-nav a:hover{
    opacity: .65;
  }
}

.g-nav{
  display: grid;
  gap: 10px;
}

.g-nav li{
  color: #000;
}
.g-nav li.mypage-nav-header{
  color: #FDD16E;
}


.top-error{
  background: #f3f3f3;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 30px;
  text-align: center;
}
.grecaptcha-badge{
  display: none;
}


/* ローディング中のアニメーション */
.loading-animetion{
  opacity: 0;
  transition: all 0.5 ease;
  animation: fadeIn 0.5s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.loading-animetion.fade-out {
  opacity: 0;
}
.loading-body {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: relative;
}
.loading-body.loaded {
  opacity: 1;
}
.loading-animation-body{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 1;
}

/* loagind */
.loader {
  height: 80px;
  aspect-ratio: 1;
  padding: 10px;
  border-radius: 50%;
  box-sizing: border-box;
  position: relative;
  mask: conic-gradient(#000 0 0) content-box exclude,conic-gradient(#000 0 0);
  filter: blur(12px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 5;
}
.loader:before {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(#0000 35%,var(--clr-ylw),#0000 65%);
  animation: l1 1.5s linear infinite;
}
@keyframes l1 {
  to {rotate: 1turn}
}

.ploading{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);

  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
}
.ploading p{
  color: #e41414;
  font-weight: bold;
}
.ploader {
  width: 50px;
  margin: 0 auto;
  margin-bottom: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side,#e41414 94%,#0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%,#e41414);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13{ 
  100%{transform: rotate(1turn)}
}

.logout-link{
  width: min(790px, 100%);
  text-align: right;
}
.logout-link a{
  border-bottom: 1px solid var(--bdr-dp-gry);
}