@charset "UTF-8";
:root {
  --vw-unit: calc((var(--vw) * (500 / 1400)) / 750);
  --vw-pcunit: calc(var(--vw) / 1400);
  --header: 80px;
}

@media screen and (min-width: 1400px) {
  :root {
    --vw-unit: calc((1400px * (500 / 1400)) / 750);
  }
}
/*アニメーション
----------------------------*/
@keyframes fadeInPic {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    filter: blur(0) brightness(1);
  }
  60% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: blur(20px) brightness(1.1);
  }
  80% {
    filter: blur(16px) brightness(1.08);
  }
  85% {
    filter: blur(10px) brightness(1.05);
  }
  90% {
    filter: blur(4px) brightness(1.02);
  }
  100% {
    opacity: 1;
    filter: blur(0) brightness(1);
    clip-path: inset(0 0 0 0);
  }
}
/*共通
----------------------------*/
html {
  scroll-behavior: smooth;
}

.l-container {
  width: 100%;
}

.l-header {
  padding: 0;
  position: relative;
  z-index: 999;
  background-color: #fff;
  overflow-x: clip;
}

.l-footer {
  padding: 0;
  position: relative;
  z-index: 999;
  background-color: #fff;
  overflow-x: clip;
}

.pc-footer {
  margin: 0;
}

#feature {
  width: 100%;
  margin: 0 auto;
  color: #000;
  box-sizing: border-box;
  text-align: center;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  overflow-x: clip;
  opacity: 0;
  transition: 0.3s;
}
#feature.is_show {
  opacity: 1;
}
#feature * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
#feature a {
  width: 100%;
  height: auto;
  display: block;
  color: #000;
  transition: 0.3s;
}
#feature a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#feature figure {
  background-color: #fff;
}
#feature img {
  width: 100%;
  height: auto;
  display: block;
}
#feature video {
  width: 100%;
  height: auto;
  display: block;
}
#feature .js_anime.is_fade {
  opacity: 0;
  transition: 1.5s;
}
#feature .js_anime .is_fade {
  opacity: 0;
  transition: 1.5s;
}
#feature .js_anime.is_clipleft {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.16, 0.88, 0.25, 1);
  transition-delay: 0.5s;
}
#feature .js_anime .is_clipleft {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.16, 0.88, 0.25, 1);
  transition-delay: 0.5s;
}
#feature .js_anime.is_clipright {
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 1.2s cubic-bezier(0.16, 0.88, 0.25, 1);
  transition-delay: 0.5s;
}
#feature .js_anime .is_clipright {
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 1.2s cubic-bezier(0.16, 0.88, 0.25, 1);
  transition-delay: 0.5s;
}
#feature .js_anime.is_cliptop {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s cubic-bezier(0.16, 0.88, 0.25, 1);
  transition-delay: 0.5s;
}
#feature .js_anime .is_cliptop {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s cubic-bezier(0.16, 0.88, 0.25, 1);
  transition-delay: 0.5s;
}
#feature .js_anime.is_show.is_fade {
  opacity: 1;
}
#feature .js_anime.is_show .is_fade {
  opacity: 1;
}
#feature .js_anime.is_show.is_clipleft {
  opacity: 1;
  clip-path: inset(0% 0px 0px);
}
#feature .js_anime.is_show .is_clipleft {
  opacity: 1;
  clip-path: inset(0% 0px 0px);
}
#feature .js_anime.is_show.is_clipright {
  opacity: 1;
  clip-path: inset(0% 0px 0px);
}
#feature .js_anime.is_show .is_clipright {
  opacity: 1;
  clip-path: inset(0% 0px 0px);
}
#feature .js_anime.is_show.is_cliptop {
  opacity: 1;
  clip-path: inset(0% 0px 0px);
}
#feature .js_anime.is_show .is_cliptop {
  opacity: 1;
  clip-path: inset(0% 0px 0px);
}

#feature {
  display: flex;
  /*メインビジュアル（.hero)
    ----------------------------*/
}
#feature .hero {
  width: 50%;
  height: calc(100vh - var(--header));
  position: sticky;
  top: var(--header);
}
#feature .hero .hero__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#feature .hero .hero__img figure {
  width: 100%;
  height: 100%;
}
#feature .hero .hero__img figure a {
  width: 100%;
  height: 100%;
}
#feature .hero .hero__img figure a img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
#feature .hero .hero__line {
  width: calc(100% - 40 * var(--vw-pcunit));
  height: calc(100% - 40 * var(--vw-pcunit));
  border: 1px solid #fff;
  border-radius: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#feature .hero .hero__ribbon {
  position: absolute;
}
#feature .hero .hero__ribbon.hero__ribbon01 {
  width: calc(70 * var(--vw-pcunit));
  top: calc(21 * var(--vw-pcunit));
  right: calc(11 * var(--vw-pcunit));
}
#feature .hero .hero__ribbon.hero__ribbon02 {
  width: calc(75 * var(--vw-pcunit));
  bottom: calc(8 * var(--vw-pcunit));
  left: calc(12 * var(--vw-pcunit));
}
#feature .hero .hero__logo {
  width: calc(179.5 * var(--vw-pcunit));
  position: absolute;
  bottom: calc(49 * var(--vw-pcunit));
  right: calc(50 * var(--vw-pcunit));
}
#feature .main {
  width: 50%;
  padding-top: calc(38 * var(--vw-unit));
  position: relative;
}
#feature .sec {
  width: calc(750 * var(--vw-unit));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  scroll-margin-top: calc(var(--header) + 50 * var(--vw-unit));
}
#feature .sec .sec__block {
  width: 100%;
  position: relative;
}
#feature .sec .sec__credit {
  width: -moz-fit-content;
  width: fit-content;
  z-index: 20;
}
#feature .sec .sec__credit .credit {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 calc(26 * var(--vw-unit));
}
#feature .sec .sec__credit .credit .item {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
#feature .sec .sec__credit .credit .item .link {
  width: -moz-fit-content;
  width: fit-content;
}
#feature .sec .sec__credit .credit .item .link p {
  font-size: calc(24 * var(--vw-unit));
  line-height: calc(48 * var(--vw-unit));
  letter-spacing: 0.05em;
}
#feature .sec .sec__credit.sec__credit01 {
  width: calc(500 * var(--vw-unit));
  margin: calc(46 * var(--vw-unit)) auto 0;
}
#feature .sec .sec__credit.sec__credit02 {
  width: calc(650 * var(--vw-unit));
  margin: calc(54 * var(--vw-unit)) auto 0;
}
#feature .sec .sec__credit.sec__credit03 {
  width: calc(700 * var(--vw-unit));
  margin: calc(44 * var(--vw-unit)) auto 0;
}
#feature .sec .sec__credit.sec__credit04 {
  width: calc(700 * var(--vw-unit));
  margin: calc(46 * var(--vw-unit)) auto 0;
}
#feature .sec .sec__credit.sec__credit05 {
  width: calc(500 * var(--vw-unit));
  margin: calc(46 * var(--vw-unit)) auto 0;
}
#feature .sec .sec__credit.sec__credit05 .credit .item .link p {
  color: #fff;
}
#feature .sec .sec__credit.sec__credit06 {
  width: calc(400 * var(--vw-unit));
  margin: calc(44 * var(--vw-unit)) auto 0;
}
#feature .sec .sec__credit.sec__credit07 {
  width: calc(700 * var(--vw-unit));
  margin: calc(44 * var(--vw-unit)) auto 0;
}
#feature .sec .sec__credit.sec__credit07 .credit .item .link p {
  color: #fff;
}
#feature .sec .sec__credit.sec__credit08 {
  width: calc(420 * var(--vw-unit));
  margin: calc(44 * var(--vw-unit)) auto 0;
}
#feature .sec .sec__credit.sec__credit09 {
  width: calc(450 * var(--vw-unit));
  margin: calc(44 * var(--vw-unit)) auto 0;
}
#feature .sec .sec__credit.sec__credit10 {
  width: calc(450 * var(--vw-unit));
  margin: calc(64 * var(--vw-unit)) auto 0;
}
#feature .sec .sec__credit.sec__credit11 {
  width: 100%;
  margin: calc(44 * var(--vw-unit)) auto 0;
}
#feature .sec .sec__flex {
  display: flex;
  position: relative;
}
#feature .sec .sec__flex.is_reverse {
  flex-direction: row-reverse;
}
#feature .sec .sec__img {
  position: relative;
}
#feature .sec .sec__img.sec__img01 {
  width: calc(566 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img02 {
  width: calc(463.5 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img03 {
  width: calc(650 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img04 {
  width: calc(464 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img05 {
  width: calc(464 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img06 {
  width: calc(566 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img07 {
  width: calc(463.5 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img08 {
  width: calc(564.5 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img09 {
  width: calc(566 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img10 {
  width: calc(463.5 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img11 {
  width: calc(463.5 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img12 {
  width: calc(650 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img13 {
  width: calc(464 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img14 {
  width: calc(464 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img15 {
  width: calc(566 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img16 {
  width: calc(564.5 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img17 {
  width: calc(566 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img18 {
  width: calc(633.5 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img19 {
  width: calc(302.5 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img20 {
  width: calc(303 * var(--vw-unit));
}
#feature .sec .sec__ttlimg {
  width: calc(586 * var(--vw-unit));
}
#feature .sec .sec__txt.sec__txt01 {
  font-size: calc(30 * var(--vw-unit));
  line-height: calc(60 * var(--vw-unit));
}
#feature .sec .sec__txt.sec__txt02 {
  font-size: calc(24 * var(--vw-unit));
  line-height: calc(52 * var(--vw-unit));
}
#feature .sec .sec__navlist {
  display: flex;
}
#feature .sec .sec__navlist .sec__navitem:nth-child(1) {
  width: calc(153 * var(--vw-unit));
}
#feature .sec .sec__navlist .sec__navitem:nth-child(2) {
  width: calc(151 * var(--vw-unit));
}
#feature .sec .sec__navlist .sec__navitem:nth-child(3) {
  width: calc(147 * var(--vw-unit));
}
#feature .sec .sec__navlist .sec__navitem:nth-child(4) {
  width: calc(133 * var(--vw-unit));
}
#feature .sec .sec__no {
  width: calc(242 * var(--vw-unit));
}
#feature .sec .sec__itemname p {
  font-size: calc(36 * var(--vw-unit));
  line-height: 1;
}
#feature .sec .sec__itemname p:nth-child(1) {
  font-size: calc(28 * var(--vw-unit));
}
#feature .sec .sec__itemname p:nth-child(2) {
  margin-top: calc(22 * var(--vw-unit));
}
#feature .sec .sec__itemname p:nth-child(3) {
  margin-top: calc(26 * var(--vw-unit));
}
#feature .sec .sec__itemtxt {
  font-size: calc(24 * var(--vw-unit));
  line-height: calc(52 * var(--vw-unit));
  text-align: left;
}
#feature .sec .sec__ribbon {
  position: absolute;
}
#feature .sec .sec__ribbon.sec__ribbon01 {
  width: calc(231 * var(--vw-unit));
}
#feature .sec .sec__ribbon.sec__ribbon02 {
  width: calc(190 * var(--vw-unit));
}
#feature .sec .sec__ribbon.sec__ribbon03 {
  width: calc(164 * var(--vw-unit));
}
#feature .sec .sec__ribbon.sec__ribbon04 {
  width: calc(183 * var(--vw-unit));
}
#feature .sec .sec__ribbon.sec__ribbon05 {
  width: calc(259 * var(--vw-unit));
}
#feature .sec .sec__ribbon.sec__ribbon06 {
  width: calc(260 * var(--vw-unit));
}
#feature .sec .sec_bg {
  background-color: #402f23;
}
#feature .sec .sec__slider.sec__slider01 .splide__slide {
  width: calc(464 * var(--vw-unit));
  margin-right: calc(40 * var(--vw-unit));
}
#feature .sec .sec__slider.sec__slider02 .splide__slide {
  width: calc(464 * var(--vw-unit));
  margin-right: calc(40 * var(--vw-unit));
}
#feature .sec .splide .splide__pagination {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding-right: calc(20 * var(--vw-unit));
  display: flex;
  justify-content: flex-end;
  gap: 0 calc(8 * var(--vw-unit));
  top: calc(20 * var(--vw-unit));
  right: calc(20 * var(--vw-unit));
  pointer-events: none;
}
#feature .sec .splide .splide__pagination li {
  width: calc(12 * var(--vw-unit));
  height: calc(12 * var(--vw-unit));
  position: relative;
  pointer-events: auto;
}
#feature .sec .splide .splide__pagination li .splide__pagination__page {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  background: #fff;
  transition: 0.3s;
  opacity: 1;
}
#feature .sec .splide .splide__pagination li .splide__pagination__page.is-active {
  transform: initial;
  background: #402f23;
}
#feature .sec .sec__btn {
  width: calc(630 * var(--vw-unit));
  position: relative;
  z-index: 2;
}
#feature .sec .sec__staff {
  font-size: calc(24 * var(--vw-unit));
  line-height: calc(48 * var(--vw-unit));
  letter-spacing: 0.05em;
}
#feature .sec.sec01 .sec__ttlimg {
  margin: calc(128 * var(--vw-unit)) auto 0;
}
#feature .sec.sec01 .sec__txt.sec__txt01 {
  margin-top: calc(84 * var(--vw-unit));
}
#feature .sec.sec01 .sec__txt.sec__txt02 {
  margin-top: calc(50 * var(--vw-unit));
}
#feature .sec.sec01 .sec__navlist {
  margin-top: calc(128 * var(--vw-unit));
}
#feature .sec.sec01 .sec__navlist .sec__navitem:nth-child(1) {
  margin-left: calc(20 * var(--vw-unit));
}
#feature .sec.sec01 .sec__navlist .sec__navitem:nth-child(2) {
  margin-left: calc(34 * var(--vw-unit));
}
#feature .sec.sec01 .sec__navlist .sec__navitem:nth-child(3) {
  margin-left: calc(40 * var(--vw-unit));
}
#feature .sec.sec01 .sec__navlist .sec__navitem:nth-child(4) {
  margin-left: calc(46 * var(--vw-unit));
}
#feature .sec.sec02 .sec__no {
  margin: calc(212 * var(--vw-unit)) auto 0;
}
#feature .sec.sec02 .sec__itemname {
  margin-top: calc(58 * var(--vw-unit));
}
#feature .sec.sec02 .sec__itemtxt {
  margin: calc(60 * var(--vw-unit)) 0 0 calc(60 * var(--vw-unit));
}
#feature .sec.sec02 .sec__img.sec__img01 {
  margin-top: calc(110 * var(--vw-unit));
}
#feature .sec.sec02 .sec__img.sec__img02 {
  margin: calc(130 * var(--vw-unit)) 0 0 auto;
}
#feature .sec.sec02 .sec__img.sec__img02::before {
  content: "";
  width: calc(464 * var(--vw-unit));
  height: calc(608 * var(--vw-unit));
  background-color: #402f23;
  position: absolute;
  top: calc(-30 * var(--vw-unit));
  left: calc(-30 * var(--vw-unit));
  z-index: -1;
}
#feature .sec.sec02 .sec__img.sec__img03 {
  margin: calc(136 * var(--vw-unit)) auto 0;
}
#feature .sec.sec02 .sec__img.sec__img06 {
  margin: calc(152 * var(--vw-unit)) auto 0;
}
#feature .sec.sec02 .sec__ribbon {
  position: absolute;
}
#feature .sec.sec02 .sec__ribbon.sec__ribbon01 {
  top: calc(-24 * var(--vw-unit));
  left: calc(200 * var(--vw-unit));
  z-index: 3;
}
#feature .sec.sec02 .sec__ribbon.sec__ribbon02 {
  top: calc(80 * var(--vw-unit));
  right: calc(0 * var(--vw-unit));
  z-index: 3;
}
#feature .sec.sec02 .sec_bg {
  margin-top: calc(136 * var(--vw-unit));
  padding-top: calc(102 * var(--vw-unit));
  padding-bottom: calc(100 * var(--vw-unit));
}
#feature .sec.sec03 .sec__no {
  margin: calc(188 * var(--vw-unit)) auto 0;
}
#feature .sec.sec03 .sec__itemname {
  margin-top: calc(64 * var(--vw-unit));
}
#feature .sec.sec03 .sec__itemtxt {
  margin: calc(60 * var(--vw-unit)) 0 0 calc(60 * var(--vw-unit));
}
#feature .sec.sec03 .sec__img.sec__img07 {
  margin: calc(140 * var(--vw-unit)) 0 0 calc(70 * var(--vw-unit));
}
#feature .sec.sec03 .sec__img.sec__img07::before {
  content: "";
  width: calc(464 * var(--vw-unit));
  height: calc(608 * var(--vw-unit));
  background-color: #402f23;
  position: absolute;
  top: calc(-30 * var(--vw-unit));
  left: calc(-30 * var(--vw-unit));
  z-index: -1;
}
#feature .sec.sec03 .sec__img.sec__img08 {
  margin: calc(98 * var(--vw-unit)) 0 0 auto;
}
#feature .sec.sec03 .sec__img.sec__img09 {
  margin: 0 auto;
}
#feature .sec.sec03 .sec__img.sec__img10 {
  margin: calc(150 * var(--vw-unit)) auto 0;
}
#feature .sec.sec03 .sec__img.sec__img11 {
  margin: calc(30 * var(--vw-unit)) auto 0;
}
#feature .sec.sec03 .sec__ribbon {
  position: absolute;
}
#feature .sec.sec03 .sec__ribbon.sec__ribbon03 {
  top: calc(556 * var(--vw-unit));
  left: calc(90 * var(--vw-unit));
  z-index: 3;
}
#feature .sec.sec03 .sec_bg {
  margin-top: calc(134 * var(--vw-unit));
  padding-top: calc(100 * var(--vw-unit));
  padding-bottom: calc(134 * var(--vw-unit));
}
#feature .sec.sec04 .sec__no {
  margin: calc(188 * var(--vw-unit)) auto 0;
}
#feature .sec.sec04 .sec__itemname {
  margin-top: calc(62 * var(--vw-unit));
}
#feature .sec.sec04 .sec__itemtxt {
  margin: calc(62 * var(--vw-unit)) 0 0 calc(60 * var(--vw-unit));
}
#feature .sec.sec04 .sec__img.sec__img12 {
  margin: calc(108 * var(--vw-unit)) auto 0;
}
#feature .sec.sec04 .sec__img.sec__img15 {
  margin-top: calc(120 * var(--vw-unit));
  z-index: 3;
}
#feature .sec.sec04 .sec__img.sec__img16 {
  margin: calc(154 * var(--vw-unit)) 0 0 auto;
  z-index: 3;
}
#feature .sec.sec04 .sec__img.sec__img17 {
  margin: calc(108 * var(--vw-unit)) auto 0;
}
#feature .sec.sec04 .sec__img.sec__img17::before {
  content: "";
  width: calc(565 * var(--vw-unit));
  height: calc(742 * var(--vw-unit));
  background-color: #402f23;
  position: absolute;
  top: calc(20 * var(--vw-unit));
  left: calc(20 * var(--vw-unit));
  z-index: -1;
}
#feature .sec.sec04 .sec__ribbon {
  position: absolute;
}
#feature .sec.sec04 .sec__ribbon.sec__ribbon04 {
  top: calc(-68 * var(--vw-unit));
  right: calc(20 * var(--vw-unit));
  z-index: 3;
}
#feature .sec.sec04 .sec__ribbon.sec__ribbon05 {
  top: calc(180 * var(--vw-unit));
  right: calc(58 * var(--vw-unit));
}
#feature .sec.sec04 .sec__ribbon.sec__ribbon06 {
  top: calc(120 * var(--vw-unit));
  left: calc(72 * var(--vw-unit));
}
#feature .sec.sec04 .sec_bg {
  margin-top: calc(120 * var(--vw-unit));
  padding-top: calc(102 * var(--vw-unit));
  padding-bottom: calc(86 * var(--vw-unit));
}
#feature .sec.sec05 {
  padding-bottom: calc(374 * var(--vw-unit));
}
#feature .sec.sec05 .sec__no {
  margin: calc(190 * var(--vw-unit)) auto 0;
}
#feature .sec.sec05 .sec__itemname {
  margin-top: calc(60 * var(--vw-unit));
}
#feature .sec.sec05 .sec__itemtxt {
  margin: calc(62 * var(--vw-unit)) 0 0 calc(60 * var(--vw-unit));
}
#feature .sec.sec05 .sec__flex {
  margin-top: calc(104 * var(--vw-unit));
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(22 * var(--vw-unit)) calc(28 * var(--vw-unit));
}
#feature .sec.sec05 .sec__btn.sec__btn01 {
  margin: calc(226 * var(--vw-unit)) auto 0;
}
#feature .sec.sec05 .sec__btn.sec__btn02 {
  margin: calc(60 * var(--vw-unit)) auto 0;
}
#feature .sec.sec05 .sec__staff {
  margin-top: calc(106 * var(--vw-unit));
}/*# sourceMappingURL=style.css.map */