<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ===================================================================================
TOP PAGE ONLY
====================================================================================== */

#bk_area{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 0;
  background-image: url('/common/img/main_bk_pc.jpg');
  background-size: cover;
  background-position: center center;
}

/*SP*/
@media screen and (max-width : 768px) {
  #bk_area{
    background-image: url('/common/img/main_bk_sp.jpg');
  }
}

#bk_area &gt; div{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: 1s all cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  background-position: center center;
}

#bk_area #disp1{
/*
  background: rgb(215, 224, 234);
  background: linear-gradient(0deg, rgba(205, 215, 229, 1) 0%, rgba(164, 174, 193, 1) 36%, rgba(255, 255, 255, 1) 100%);
  z-index: 101;
*/
  background: rgb(233,225,191);
  background: linear-gradient(0deg, rgba(233,225,191,1) 0%, rgba(194,182,136,1) 36%, rgba(255,255,255,1) 100%);
  z-index: 101;
}

#index6 #bk_area #disp1{
  background: rgba(255, 218, 220, 1);
  background: linear-gradient(180deg, rgba(255, 218, 220, 1) 0%, rgba(187,92,96,1) 34%, rgba(155, 65, 69, 1) 70%, rgba(187,92,96,1) 80%, rgba(255, 218, 220, 1) 100%);
  z-index: 101;
}

#index7 #bk_area #disp1{
  background: rgb(233,225,191);
  background: linear-gradient(0deg, rgba(233,225,191,1) 0%, rgba(194,182,136,1) 36%, rgba(255,255,255,1) 100%);
  z-index: 101;
}

#index8 #bk_area #disp1{
  background: rgb(230, 230, 230);
  background: linear-gradient(0deg, rgba(232, 232, 232, 1) 0%, rgba(196, 196, 196, 1) 36%, rgba(255, 255, 255, 1) 100%);
  z-index: 101;
}


#bk_area #disp2{
  background-image: url('/common/img/bk_last.jpg');
  background-size: cover;
  z-index: 102;
}

.is-part1 #bk_area #disp1{
  opacity: 1;
}

.is-part2 #bk_area #disp2{
  opacity: 0.3;
}

/* main_area
======================================================================================*/
._wrapper {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100%;
}

#main_area{
  width: 100%;
  height: 104dvh;
  position: relative;
  z-index: 10;
  padding-left: 25vw;
  text-align: left;
  overflow: hidden;
}

#main_area ._catch{
  padding-top: 3dvh;
  margin-left: 30%;
  width: 67%;
  animation-name:blurAnime;
  animation-duration:1.5s;
  animation-delay:.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@media screen and (max-height : 800px){
  #main_area ._catch{
    width: 94%;
    margin-left: 3%;
  }
}

/*SP*/
@media screen and (max-width : 768px){
  #main_area{
    padding-left: 0;
  }
  #main_area ._catch{
    padding-top: 20vw;
  }
}

@keyframes blurAnime{
  from {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  }

  to {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  filter: drop-shadow(0px 2px 5px rgba(0,0,0,.4));
  }
}

@keyframes blurAnime2{
  from {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  }

  to {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  }
}
 
#main_area ._lead{
  color: #fff;
  font-size: var(--f-18-24);
  font-weight: bold;
  filter: drop-shadow(0px 2px 5px rgba(0,0,0,.4));
  /* text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4); */
  margin-top: 4dvh;
  text-align: right;
  padding-right: 1em;
}

/*SP*/
@media screen and (max-width : 768px) {
  #main_area ._lead{
    text-align: center;
    padding-right: 0;
  }
}

#content_area{
  width: 100%;
  overflow: hidden;
}

.s_sec{
  margin-top: 30vw;
  margin-bottom: 30vw;
  width: 100%;
  position: relative;
  line-height: 2;
}

.s_sec::after{
  content: url('../img/ring_grade.svg');
  position: absolute;
  bottom: -20%;
  left: var(--ring-gap);
  z-index: -1;
  width: 70vw;
  transform: rotate(45deg);
}

.s_sec ._inner{
  padding: 20px;
  /* border: 1px solid red; */
  /* width: calc(100% - var(--gap-side)*2); */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  /* background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); */
  color: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: left;
  align-items: center;
}



.s_sec ._inner &gt; *:first-child{
  padding-left: 30%; 
}


.s_sec.-reverse ._inner &gt; *:first-child{
  grid-column: 2/3;
  grid-row: 1/2;
}

.s_sec.-reverse ._inner &gt; *:last-child{
  grid-column: 1/2;
  grid-row: 1/2;
}

.s_sec.-reverse::after{
  left: auto;
  right: var(--ring-gap);
  transform: rotate(-45deg);
}

@media screen and (max-width : 768px){
  .s_sec ._inner{
    display: block;
  }
  
  .s_sec ._inner &gt; *:first-child{
    padding-left: 0;
    margin-bottom: 2em;
  }
  
  .s_sec::after{
    width: 120%;
    top: -10%;
    bottom: auto;
  }
}

.s_sec h2{
  font-size: var(--f-24-36);
  margin-bottom: 1em;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.7);
}

.s_sec p,
.s_sec ul{
  
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.7);
}

.s_sec ._photo{
  border-radius: 50%;
  transition: 0.8s transform cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

/* .s_sec :hover ._photo{
  transform: scale(110%);
} */

.s_infoarea{
  padding-left: 20px;
  position: absolute;
  bottom: 0em;
  right: 0;
  width: 60%;
  display: grid;
  gap: 1dvh;
  transform: translateX( 99% );
  transition: 0.8s transform cubic-bezier(0.165, 0.84, 0.44, 1) .5s;
}

/*SP*/
@media screen and (max-width : 768px){
  .s_infoarea{
    padding-left: var(--gap-side);
    width: 100%;
  }
}

.s_infoarea.js-action.is-inview{
  transform: translateX(0);
}

.s_banner{
  max-width: 700px;
}


/*SP*/
@media screen and (max-width : 768px){
  .s_banner{
    overflow: hidden;
  }
}

.s_banner img{
   border-radius: 10px;
   border: 2px solid #fff;
   opacity: 0;
   transition: opacity 0.4s 0.5s ease-in;
}

.s_banner .swiper-slide-visible img{
  opacity: 1;
}

.s_news{
  padding: 1em 2vw 1em;
  border-radius: 2em 0 0 2em;
  display: grid;
  grid-template-columns: 4em auto;
  gap: 1em;
  text-align: left;
  background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(180,180,180,1) 100%);
}

.s_news h3{
  text-align: right;
  color: var(--c-red);
}

.s_news ._date{
  text-align: right;
}

.s_news a:not(.news-list_all_link){
  display: grid;
  grid-template-columns: 6em auto;
  padding: 5px;
  font-size: var(--f-12-14);
  border-bottom: 1px solid #bbb;
  gap: 1em;
}

.s_news li{
  border-bottom: 1px solid #fff;
}
.news-list_all {
  margin-top: 10px;
  padding-right: 40px;
  display: flex;
  justify-content: end;
  font-size: var(--f-12-14);
}</pre></body></html>