@charset "UTF-8";

:root {
  --rate: 49rem / 750;
  --font-lp_base: "europa","Noto Sans JP","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  --font-lp_serif: "Noto Serif JP", serif;
  --color-lp_bg: #fff;
  --color-lp_font: #000000;
  --color-lp_line: #e5e5e5;

  --pw: 1400; /* PC幅 */
  --sw: 750; /* SP幅 */
  --artboard-pw: 420; /* PCアートボード幅 */
  --artboard-sw: 750; /* SPアートボード幅 */
  --rem: calc(var(--variable) * var(--ratio));
  --rem-pc: var(--variable);

  --mv-img: url(../img/2025/second/mv.jpg);
}

@media (768px <= width) {
  :root {
    --ratio: calc(var(--artboard-pw) / var(--artboard-sw));
    --variable: calc(100vw / var(--pw));
  }
}
/* @media (1400px <= width) {
  :root {
    --variable: 1px;
  }
} */
@media (width < 768px) {
  :root {
    --ratio: 1;
    --variable: calc(100vw / var(--sw));
  }
}


/*--------------------------------
            CSS Animation
 --------------------------------*/

/* zoom
==================================*/
#lp_contents .zoom{
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1.1);
  transition: opacity 2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94), scale 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#lp_contents .zoom.is-show{
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}


/* Fade In
==================================*/
#lp_contents .fadeInUp {
  transform: translateY(5%);
  opacity: 0;
  transition: all 1.8s ease;
}

#lp_contents .fadeInUp.is-show {
  transform: translate(0, 0);
  opacity: 1;
}


/*--------------------------------
                共 通
 --------------------------------*/

html {
  scroll-behavior: smooth;
}

main,#Wrap,.wrapBottom,.wrapTop{
  width: 100%;
  max-width: 100%;
}

#lp_contents *{
  box-sizing: border-box;
}

#lp_contents{
  font-family: var(--font-lp_base);
  /*font-feature-settings: "palt";*/
  font-size: calc(28 * (var(--rem)));
  letter-spacing: 0.025em;
  line-height: 1.8;
  text-align: center;
  color: var(--color-lp_font);
  background-color: var(--color-lp_bg);
  position: relative;
}
#lp_contents .sp_only{display: none;}
#lp_contents img{width: 100%;display: block;height: auto; image-rendering: -webkit-optimize-contrast; -webkit-backface-visibility: hidden;}
#lp_contents a{display: block;width: 100%;cursor: pointer;transition: all 0.5s;color: inherit;}
#lp_contents a:hover{opacity: .8}
#lp_contents ul li,#lp_contents ol li{list-style: none;}
#lp_contents section{
  position: relative;
}
#lp_contents .lp_inner{
  padding-bottom: calc(200 * (var(--rem)));
}


/* layout
==================================*/
.l-mobile-first {
  position: relative;
  @media (768px <= width) {
    display: flex;
  }
}
.l-mobile-first__left,
.l-mobile-first__right {
  position: relative;
  width: calc((100% - (var(--artboard-pw) * var(--rem-pc))) / 2);
}
.l-mobile-first__sticky {
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}
.l-mobile-first__main {
  overflow-x: clip;
  background: #fff;
  @media (768px <= width) {
    width: calc(var(--artboard-pw) * var(--rem-pc));
  }
}

.l-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  &::before {
    position: sticky;
    content: '';
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to top, #e5ded1 0%, #fff 28%, #fff 100%);
  }
}


/* tab
==================================*/
.p-tab-list__container {
  margin-bottom: calc(120 * var(--rem));
}
.p-tab-list__item-button {
  width: calc(376 * var(--rem));
  padding-bottom: calc(29 * var(--rem));
  background: none;
  border: none;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-lp_serif);
  color: #e5e5e5;
  font-size: calc(38 * (var(--rem)));
  line-height: 1;
  letter-spacing: 0.05em;
  cursor: pointer;
  :where(.slick-current, .slick-active, .slick-center) & {
    color: #875d2a;
  }
}


/* pc
==================================*/
.p-logo-box {
  width: calc(323.142 * var(--rem-pc));
}

.p-anchor {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(260 * var(--rem-pc));
  gap: calc(30 * var(--rem-pc)) calc(20 * var(--rem-pc));
}
.p-anchor__item-element {
  padding-bottom: calc(10 * var(--rem-pc));
  border-bottom: 1px solid currentColor;
  font-family: var(--font-lp_serif);
  color: #e5e5e5 !important;
  font-size: calc(18 * (var(--rem-pc)));
  line-height: 1;
  letter-spacing: 0.05em;
  &.is-current {
    color: #875d2a !important;
  }
}


/*------------ Text ------------*/
#lp_contents h1,#lp_contents h2,#lp_contents h3{padding: 0;float: none;font-weight: normal;}
#lp_contents p {
  display: block;
  margin: 0;
  font-size: calc(28 * (var(--rem)));
  line-height: 1.8;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents .note{
  display: inline-block;
  font-size: calc(10 * (var(--rem)));
  line-height: 1.5;
}
#lp_contents p .note{
  margin-top: 0;
}
#lp_contents .bold{
  font-weight: bold;
}
#lp_contents .small{
  font-size: calc(10 * (var(--rem)));
}


/* sec_mv
==================================*/
 #lp_contents .sec_mv{
  position: static;
  width: 100%;
  height: calc(750 * (var(--rem)));
}

#lp_contents .sec_mv .mv_img{
  width: 100%;
  height: 100%;
  background-image: var(--mv-img);
  background-repeat: no-repeat;
  background-size: 100%;
}

#lp_contents .sec_mv .mv_ttl{
  width: calc(604 * (var(--rem)));
  position: absolute;
  top: calc(24 * (var(--rem)));
  left: 0;
  right: 0;
  margin: auto;
}


/* lead_wrap
==================================*/
#lp_contents .lead_wrap{
  margin: calc(51 * (var(--rem))) auto calc(187 * (var(--rem)));
}

#lp_contents .lead_wrap .main_ttl{
  font-family: var(--font-lp_serif);
  font-size: calc(42 * (var(--rem)));
  width: fit-content;
  padding-bottom: calc(10 * (var(--rem)));
  margin: 0 auto calc(48 * (var(--rem)));
  color: #875d2a;
  border-bottom: 1px solid #875d2a;
}

#lp_contents .lead_wrap .main_lead {
  font-feature-settings: "palt";
  letter-spacing: .125em;
}

/* sec_item
==================================*/
#lp_contents .sec_item {
  width: calc(750 * var(--rem));
}

#lp_contents .sec_item ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(30 * (var(--rem)));
  padding: 0 calc(30 * (var(--rem)));
}

#lp_contents .sec_item li{
  position: relative;
  padding: calc(40 * (var(--rem))) calc(30 * (var(--rem))) calc(90 * (var(--rem)));
  border: 1px solid var(--color-lp_line);
}

#lp_contents .sec_item .award{
  position: absolute;
  top: calc(40 * (var(--rem)));
  right: calc(30 * (var(--rem)));
  z-index: 2;
  width: calc(166 * (var(--rem)));
}

#lp_contents .sec_item .item_img{
  width: calc(420 * (var(--rem)));
  margin: 0 auto calc(30 * (var(--rem)));
}

#lp_contents .sec_item .item_detail{
  font-size: calc(32 * (var(--rem)));
  margin-bottom: calc(56 * (var(--rem)));
}

#lp_contents .sec_item .item_detail .tax{
  font-size: calc(26 * (var(--rem)));
}

#lp_contents .sec_item .item_lead{
  margin-bottom: calc(65 * (var(--rem)));
}

#lp_contents .sec_item .link_btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(630 * (var(--rem)));
  height: calc(82 * (var(--rem)));
  background-color: #000;
  color: #fff;
  margin: 0 auto calc(65 * (var(--rem)));
}

#lp_contents .sec_item .link_btn:before{
  content: '';
  width: calc(20 * (var(--rem)));
  height: calc(20 * (var(--rem)));
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  rotate: -45deg;
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(30 * (var(--rem)));
  margin: auto;
}

#lp_contents .sec_item .award_list{
  text-align: left;
  /* line-height: 1.68; */
  line-height: 1.8;
  font-size: calc(26 * (var(--rem)));
}

#lp_contents .sec_item .award_list span{
  display: block;
  text-indent: calc(-30 * (var(--rem)));
  padding-left: calc(22 * (var(--rem)));
}


/*--------------------------------
            Responsive
 --------------------------------*/

/*=======================================
                    PC
========================================*/
@media (768px <= width) {
  .u-d-md {
    display: none !important;
  }
}


/*=======================================
                    SP
========================================*/
@media (width < 768px) {
  .u-d-lg {
    display: none !important;
  }

  .page-share-btn{
    height: 0;
  }

  #share{
    z-index: 100 !important;
  }

  #FooterWrap {
    margin-top: -3rem;
  }

  #lp_contents a:hover{opacity: 1}
}
