:root {
  --main-red: #d71618;
  --text-color: #000;

  /* フォント */
  /* --fz10: calc(10 / 16 * 1rem); */

  /* --fz12: calc(12 / 16 * 1rem);
  --fz13: calc(13 / 16 * 1rem);
  --fz14: calc(14 / 16 * 1rem);
  --fz15: calc(15 / 16 * 1rem);
  --fz17: calc(17 / 16 * 1rem);
  --fz18: calc(18 / 16 * 1rem);
  --fz19: calc(19 / 16 * 1rem);
  --fz20: calc(20 / 16 * 1rem);
  --fz22: calc(22 / 16 * 1rem);
  --fz23: calc(23 / 16 * 1rem);
  --fz24: calc(24 / 16 * 1rem);
  --fz25: calc(25 / 16 * 1rem);
  --fz26: calc(26 / 16 * 1rem);
  --fz28: calc(28 / 16 * 1rem);
  --fz30: calc(30 / 16 * 1rem);
  --fz32: calc(32 / 16 * 1rem);
  --fz36: calc(36 / 16 * 1rem);
  --fz38: calc(38 / 16 * 1rem);
  --fz40: calc(40 / 16 * 1rem);
  --fz42: calc(42 / 16 * 1rem);
  --fz48: calc(48 / 16 * 1rem);
  --fz60: calc(60 / 16 * 1rem);
  --fz62: calc(62 / 16 * 1rem);
  --fz64: calc(64 / 16 * 1rem);
  --fz68: calc(68 / 16 * 1rem);
  --fz80: calc(80 / 16 * 1rem);
  --fz90: calc(90 / 16 * 1rem);
  --fz110: calc(110 / 16 * 1rem);
  --fz111: calc(111 / 16 * 1rem);
  --fz120: calc(120 / 16 * 1rem);
  --fz124: calc(124 / 16 * 1rem);
  --fz140: calc(140 / 16 * 1rem); */
}

.nichirepo-body {
  /* font-size: var(--fz14); */
  font-size: 14px;
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", "Zen Kaku Gothic", "Noto Sans JP", sans-serif !important;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: clip;
  /* background: linear-gradient(180deg, #FFF 0%, #E7E7E7 100%); */
}

.nichirepo-body a {
  color: var(--text-color);
}

main {
  padding-bottom: 60px;
}


@media (min-width:768px) {
  body {
    font-size: 20px;
  }

  main {
    padding-bottom: 80px;
  }
}

/* ::selection {
  background-color: var(--main-red);
  color: #fff;
} */

/***************************************
common
***************************************/
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

a span {
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.7;
}

.onlyPC {
  display: none;
}

.uppercase {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.pageTop {
  z-index: 99;
}

.yakuhan {
  font-family: YakuHanRPs, sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
}

.anchor-target {
  display: block;
  padding-top: 64px;
  margin-top: -64px;
}


@media (min-width: 768px) {
  .onlySP {
    display: none;
  }

  .onlyPC {
    display: block;
  }

  .anchor-target {
    padding-top: 86px;
    margin-top: -86px;
  }
}

/***************************************
ヘッダー
***************************************/
.nichirepo-header {
  width: 100%;
  height: 64px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  /* backdrop-filter: blur(20px); */
  padding: 0 15px;
  border-radius: 0 0 20px 20px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
  transition: all 0.3s;
}
.nichirepo-header:has(.open) {
  box-shadow: none;
  border-radius: 0;
  background: #fff;
}

.nichirepo-header .header-container {
  max-width: 1600px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.nichirepo-header .header-logo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nichirepo-header .header-logo img {
  display: block;
  width: 172px;
  height: auto;
}

.nichirepo-header .header-logo button {
  display: block;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
}

.nichirepo-header .btn-hamburger-inner {
  position: relative;
  width: 24px;
  height: 16px;
}

.nichirepo-header .btn-hamburger-inner span {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  border-radius: 10px;
  transition: all 0.3s;
}

.nichirepo-header .btn-hamburger-inner span:first-child {
  top: 0;
}
.nichirepo-header .btn-hamburger-inner span:nth-child(2) {
  top: 6px;
}
.nichirepo-header .btn-hamburger-inner span:nth-child(3) {
  top: 12px;
}

.nichirepo-header .header-logo button[aria-expanded="true"] .btn-hamburger-inner span:first-child {
  /* width: 22px; */
  transform: rotate(45deg);
  top: 7px;
}
.nichirepo-header .header-logo button[aria-expanded="true"] .btn-hamburger-inner span:nth-child(2) {
  opacity: 0;
}

.nichirepo-header .header-logo button[aria-expanded="true"] .btn-hamburger-inner span:nth-child(3) {
  /* width: 22px; */
  transform: rotate(-45deg);
  top: 3px;
}

.nichirepo-header nav {
  display: block;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 67px);
  background-color: #fff;
  padding: 0 30px;
  opacity: 0;
  transition: opacity 0.4s;
  /* overflow-y: scroll; */
}

.nichirepo-header nav[inert] {
  display: none;
}

.nichirepo-header nav.open {
  opacity: 1;
}

.nichirepo-header .nav-menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid #E5E5E5;
  padding-top: 28px;
}


.nichirepo-header .nav-menu li {
  /* font-size: 1rem; */
  font-size: 16px;
  padding: 0 10px 0 8px;
}

.nichirepo-header .nav-menu a:hover {
  color: var(--main-red);
  opacity: 1;
}


@media (min-width: 768px) {
  .nichirepo-header {
    height: 86px;
    padding: 0 40px;
  }

  .nichirepo-header .header-logo {
    width: fit-content;
  }

  .nichirepo-header .header-logo img {
    width: 230px;
  }

  .nichirepo-header .header-logo button {
    display: none;
  }

  .nichirepo-header  nav {
    display: block;
    position: static;
    width: fit-content;
    height: 100%;
    background-color: transparent;
    padding: 0;
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 32px;
    /* overflow: unset; */
  }

  .nichirepo-header .nav-menu {
    display: flex;
    flex-direction: row;
    /* gap: 24px; */
    border-top: none;
    padding-top: 0;
  }

  .nichirepo-header .nav-menu li {
    color: #000;
    /* font-size: var(--fz20); */
    font-size: 20px;
    padding: 0;
    border-bottom: none;
  }

  .nichirepo-header  .btn-contact {
    display: none;
  }

}

@media (min-width:1000px) {

  .nichirepo-header .nav-menu {
    gap: 41px;
  }

}

/***************************************
KV
***************************************/
.kv {
  background: var(--bg, linear-gradient(180deg, #FFF 0%, #E7E6E6 100%));
  box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.12) inset;
  overflow: clip;
}

.kv-img,
/* .shirarezaru,  */
.kv-logo,
.nichirepo img,
.kv-persons {
  will-change: opacity, transform;
}

.kv-inner {
  max-width: 640px;
  margin: 0 auto;
  overflow-y: clip;
}

.kv-texts {
  padding: 16px 15px 0;
}

.kv-texts .shirarezaru {
  width: 100%;
  /* transform: scale(0);
  opacity: 0; */
}

.kv-texts .nichirepo {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  aspect-ratio: 345 / 72.5;
}

.kv-texts .nichirepo img {
  transform: scale(0);
  opacity: 0;
}

/* .kv-texts .nichirepo {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  will-change: clip-path;
} */

.kv-logo {
  width: 22.13%;
  padding: 0 15px;
  /* transform: scale(0); */
}

.kv-logo img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 18px;
}

.kv-persons {
  position: relative;
  aspect-ratio: 375 / 410;
  width: 100%;
  margin-top: -25%;
  transform: scale(0);
  opacity: 0;
}

.kv-persons .ando {
  display: block;
  width: 84%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: -10%;
}
.kv-persons .kazu {
  display: block;
  width: 56.8%;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (min-width:768px) {
  .kv {
    box-shadow: 0 -32px 64px 0 rgba(0, 0, 0, 0.12) inset;
  }

  .kv-inner {
    max-width: 1500px;
    padding: 0 15px;
    /* margin: 0 auto; */
  }

  .kv-texts {
    padding: 24px 15px 0;
    /* width: 100%; */
  }

  .kv-texts .shirarezaru {
    width: 48%;
    padding-left: 1.5%;
  }

  .kv-texts .nichirepo {
    /* display: flex; */
    aspect-ratio: 1201 / 252;
    gap: 0;
    margin-top: 20px;
  }

  /* .kv-texts .nichirepo img {
    width: ;
  } */

  .kv-texts .nichirepo img:first-child {
    margin-right: 2.16%;
  }
  .kv-texts .nichirepo img:nth-child(2) {
    margin-right: 2.58%;
  }
  .kv-texts .nichirepo img:nth-child(3) {
    margin-right: 2.34%;
  }
  .kv-texts .nichirepo img:nth-child(4) {
    margin-right: 2.83%;
  }

  .kv-logo {
    width: 15.2%;
    padding: 0 15px;
    margin-left: auto;
  }

  .kv-logo img {
    height: auto;
    margin-top: 36px;
    margin-left: auto;
  }

  .kv-persons {
    position: relative;
    left: -3%;
    aspect-ratio: 718 / 471;
    width: 59%;
    margin: -36.5% auto 0;
  }

  .kv-persons .ando {
    display: block;
    width: 77%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .kv-persons .kazu {
    display: block;
    width: 47.35%;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
  }

}

/***************************************
Dialog
***************************************/
.dialog {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

@media (max-width:767px) {
  .dialog {
    background-image: url("../img/bg_dialog_sp.webp");
    padding-bottom: 50px;
  }
}

.voices-container {
  padding: 40px 15px;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.voice-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 0;
  position: relative;
}

.voice-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width:767px) {

  .voice-wrapper::after {
    content: '';
    display: block;
    width: 30vw;
    max-width: 123px;
    height: auto;
    aspect-ratio: 1 / 1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    position: absolute;
    z-index: -1;
  }

  .voice-wrapper.voice-wrapper1::after {
    background-image: url(../img/dialog_circle_kazu1.webp);
    left: 68%;
    bottom: -30px;
  }

  .voice-wrapper.voice-wrapper2::after {
    background-image: url(../img/dialog_circle_ando.webp);
    right: 66%;
    bottom: -30px;
  }

  .voice-wrapper.voice-wrapper3::after {
    background-image: url(../img/dialog_circle_kazu2.webp);
    left: 68%;
    bottom: -60px;
  }
}

.voice-wrapper .voice-wrapper-inner {
  display: flex;
  align-items: flex-end;
}

.voice-wrapper .triangle {
  width: 24px;
  position: relative;
  top: 0;
  left: -3px;
}
.voice-wrapper .triangle.triangle-left {
  z-index: 2;
  left: unset;
  right: -3px;
}

.voice-wrapper .triangle img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(5.5px 0px 0 var(--main-red));
}

.voice-wrapper .triangle.triangle-left img {
  filter: drop-shadow(-4px 0 0 var(--main-red));
}

.triangle::after {
  content: '';
  display: block;
  width: 120%;
  height: 6px;
  background: var(--main-red);
  position: absolute;
  left: 0px;
  bottom: -6px;
  border-radius: 0 0 3px 0;
}

.voice-wrapper .triangle.triangle-left::after{
  border-radius: 0 0 0 3px;
  left: unset;
  right: 0px;
}

.voice {
  padding: 20px 12px 20px 12px;
  background: #fff;
  /* border: 3px solid var(--main-red); */
  box-shadow: 0 0 0 3px var(--main-red);
  filter: drop-shadow(5px 3px 0 #D71618);
  width: 60vw;
  max-width: 220px;
  border-radius: 10px 10px 0 10px;
  position: relative;
  flex: 1;
}

.voice-wrapper1 .voice {
  padding: 20px 16px 20px 12px;
}

.voice-wrapper2 .voice {
  border-radius: 10px 10px 10px 0;
}

.voice-wrapper2 .voice {
  padding-right: 4px;
}

.voice-wrapper3 .voice {
  /* font-size: 1rem; */
  font-size: 16px;
}


.voice p {
  width: fit-content;
  margin: 0 auto;
}

.voice p span {
  color: var(--main-red);
}

@media (min-width:768px) {
  .dialog {
    background-image: url("../img/bg_dialog_pc.webp");
  }

  .voices-container {
    /* padding: 40px 15px; */
    width: 420px;
    max-width: unset;
    /* margin: 0 auto; */
    /* display: flex; */
    /* flex-direction: column; */
    gap: 50px;
    position: relative;
  }

  .voice-wrapper {
    display: flex;
    justify-content: flex-start;
    z-index: 1;
  }

  .voice-wrapper:nth-child(even) {
    flex-direction: row-reverse;
  }

  .voices-container::before,
  .voices-container::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    height: auto;
    z-index: 0;
  }

  .voices-container::before {
    width: 400px;
    aspect-ratio: 519 / 533;
    background-image: url("../img/dialog_ando_pc.webp");
    left: 50%;
    transform: translateX(calc(-50% - 300px));
  }

  .voices-container::after {
    width: 400px;
    aspect-ratio: 519 / 628;
    background-image: url("../img/dialog_kazu_pc.webp");
    right: 50%;
    transform: translateX(calc(50% + 260px));
  }

  .voice {
    padding: 20px;
    filter: drop-shadow(14px 9px 0 #D71618);
    width: auto;
    min-width: 300px;
    height: auto;
    display: grid;
    place-items: center;
    /* font-size: var(--fz18); */
    font-size: 18px;
  }

  .voice-wrapper3 .voice {
    /* font-size: var(--fz20); */
    font-size: 20px;
  }

  .voice-wrapper .triangle {
    width: 30px;
  }

  .triangle::after {
    /* content: '';
    display: block; */
    width: 160%;
    height: 12px;
    background: var(--main-red);
    position: absolute;
    left: -13px;
    bottom: -12px;
    border-radius: 0 0 3px 0;
  }

  .voice-wrapper .triangle.triangle-left::after{
    border-radius: 0 0 0 3px;
    left: unset;
    right: -14px;
  }


}

@media (min-width:1160px) {

  .voices-container {
    width: 587px;
    padding: 60px 0;
  }
  .voice {
    width: 470px;
    max-width: unset;
    height: 187px;
    /* border-radius: 10px 10px 0 10px; */
    /* position: relative; */
    /* flex: 1; */
    display: grid;
    place-items: center;
    /* font-size: var(--fz20); */
    font-size: 20px;
  }

  .voice-wrapper3 .voice {
    /* font-size: var(--fz24); */
    font-size: 24px;
  }

  .voices-container::before {
    width: 519px;
    transform: translateX(calc(-50% - 420px));
  }

  .voices-container::after {
    width: 519px;
    transform: translateX(calc(50% + 400px));
  }
}



/***************************************
dialog deco
***************************************/
@keyframes float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}
@keyframes float2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(8px);
  }
}

.dialog-deco {
  background-repeat: no-repeat;
  background-size: contain;
  height: auto;
  position: absolute;
  z-index: 2;
  animation: float 1.4s cubic-bezier(0.42, 0, 0.58, 1) infinite alternate;
}

@media (max-width:767px) {
  .deco-karaage-sp {
    width: 80px;
    aspect-ratio: 200 / 170;
    background-image: url("../img/deco_dialog_karaage_sp.webp");
    top: -34px;
    right: 80px;
  }

  /* .deco-chahan-sp { */
  .deco-harumaki-sp {
    /* width: 110px;
    aspect-ratio: 200 / 119; */
    width: 90px;
    aspect-ratio: 200 / 151;
    /* background-image: url("../img/deco_dialog_chahan_sp.webp"); */
    background-image: url("../img/deco_dialog_harumaki_sp.webp");
    bottom: -70px;
    left: 0;
    animation-name: float2;
  }

  .deco-hamburg-sp {
    width: 90px;
    aspect-ratio: 200 / 151;
    background-image: url("../img/deco_dialog_hamburg_sp.webp");
    top: -30px;
    left: 70%;
    animation-name: float2;
  }

  /* .deco-harumaki-sp { */
  .deco-chahan-sp {
    /* width: 90px;
    aspect-ratio: 200 / 151; */
    width: 110px;
    aspect-ratio: 200 / 119;
    /* background-image: url("../img/deco_dialog_harumaki_sp.webp"); */
    background-image: url("../img/deco_dialog_chahan_sp.webp");
    bottom: -50px;
    left: 0;
  }
}

@media (min-width:768px) {
  @keyframes float {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-10px);
    }
  }
  @keyframes float2 {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(10px);
    }
  }
  /* .deco-chahan-pc { */
  .deco-harumaki-pc {
    /* width: 160px;
    aspect-ratio: 200 / 119; */
    width: 120px;
    aspect-ratio: 200 / 151;
    /* background-image: url("../img/deco_dialog_chahan_pc.webp"); */
    background-image: url("../img/deco_dialog_harumaki_pc.webp");
    top: -30px;
    right: -120px;
  }
  /* .deco-harumaki-pc { */
  .deco-chahan-pc {
    /* width: 120px;
    aspect-ratio: 200 / 151; */
    width: 160px;
    aspect-ratio: 200 / 119;
    /* background-image: url("../img/deco_dialog_harumaki_pc.webp"); */
    background-image: url("../img/deco_dialog_chahan_pc.webp");
    top: -40px;
    left: -20px;
  }

  .deco-karaage-pc {
    width: 110px;
    aspect-ratio: 200 / 170;
    background-image: url("../img/deco_dialog_karaage_pc.webp");
    top: 20px;
    left: -130px;
    animation-name: float2;
  }

  .deco-hamburg-pc {
    width: 110px;
    aspect-ratio: 200 / 170;
    background-image: url("../img/deco_dialog_hamburg_pc.webp");
    bottom: 120px;
    right: 60px;
    animation-name: float2;
  }

}

@media (min-width:1200px) {
  /* .deco-chahan-pc { */
  .deco-harumaki-pc {
    /* width: 210px; */
    width: 180px;
    top: -30px;
    right: -60px;
  }
  /* .deco-harumaki-pc { */
  .deco-chahan-pc {
    /* width: 200px; */
    width: 210px;
    top: -40px;
    left: 0px;
    z-index: 3;
  }

  .deco-karaage-pc {
    width: 160px;
    top: 60px;
    left: -300px;
  }

  .deco-hamburg-pc {
    width: 180px;
    bottom: unset;
    top: 120px;
    right: -400px;
    animation-delay: 0.3s;
  }

}

/***************************************
Stats
***************************************/
.stats {
  padding: 40px 15px;
  background: #fff;
}

.stats-inner {
  max-width: 500px;
  margin: 0 auto;
}

.highlight-red {
  background: var(--main-red);
  color: #fff;
  padding: 0 6px;
}

.stats h3 {
  line-height: 1.7;
}

@keyframes bg-slide {
  to {
    width: 100%;
  }
}

.stats .highlight-red-from-left {
  position: relative;
  color: #fff;
  background: transparent;
  overflow: hidden;
  z-index: 1;
}

.stats .highlight-red-from-left.animate::before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--main-red);
  animation: bg-slide 1s linear forwards;
  /* animation-delay: 5s; */
  z-index: -1;
}

.stats h3 .highlight-red-from-left {
  /* font-size: var(--fz48); */
  font-size: 48px;
  padding: 0 6px;
}

.stats h3 .small {
  /* font-size: var(--fz28); */
  font-size: 28px;
}

.ratio {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ratio h4 {
  color: var(--main-red);
  /* font-size: var(--fz20); */
  font-size: 20px;
}

.ratio h4 .medium {
  /* font-size: var(--fz28); */
  font-size: 28px;
}

.ratio h4 .highlight-red {
  /* font-size: var(--fz40); */
  font-size: 40px;
  margin-right: 4px;
}

.stats p {
  font-weight: 500;
}

.ratio img {
  display: block;
  width: 74.8%;
  height: auto;
  margin: 0 auto;
  max-width: 360px;
}

.product-num {
  margin-top: 30px;
}

.product-num h4 {
  color: var(--main-red);
  /* font-size: var(--fz18); */
  font-size: 18px;
  line-height: 1;
}

.product-num > div p {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-top: -4px;
}

.product-num .highlight-bg-red {
  position: relative;
  /* font-size: var(--fz68); */
  font-size: 68px;
  /* height: 90%; */
  color: #fff;
  display: block;
  padding: 0 10px 0 6px;
  width: fit-content;

}

.product-num .highlight-bg-red > span {
  position: relative;
  z-index: 1;
  padding-left: 4px;
  font-family: "Neuton", serif;
}

.product-num .highlight-bg-red > span .comma {
  /* font-size: var(--fz48); */
  font-size: 48px;
}

.product-num .highlight-bg-red::before {
  content: '';
  width: 100%;
  height: 82%;
  background: var(--main-red);
  /* font-size: var(--fz68); */
  font-size: 68px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.product-num .ml {
  color: var(--main-red);
  margin-left: 4px;
  writing-mode: vertical-lr;
  position: relative;
  top: 7px;
  font-weight: 900;
  /* font-size: var(--fz24); */
  font-size: 24px;
  letter-spacing: 0.1em;
}

.product-num > p:last-of-type {
  margin-top: 16px;
}

.stats .show-onlyPC {
  display: none;
}

.product-num-link {
	margin-top: 15px !important;
}

.product-num-link a {
	text-decoration: underline;

}

@media (min-width:768px) {
  .stats {
    padding: 60px 15px 90px;
  }

  .stats-inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .highlight-red {
    padding: 0;
  }

.stats .highlight-red-from-left.animate::before {
  /* content: '';
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--main-red);
  animation: bg-slide 1s linear forwards; */
  /* animation-delay: 5s; */
  /* z-index: -1; */
}

.stats h3 .highlight-red-from-left {
  /* font-size: var(--fz48); */
  font-size: 48px;
  /* font-size: 111px; */
}

  .stats h3 {
    line-height: 1.7;
    /* padding: 0 6px; */
    line-height: 1.5;
  }

  .stats h3 .highlight-red-from-left {
    /* font-size: var(--fz80); */
    /* font-size: 111px; */
    font-size: 80px;
    /* background: transparent; */
  }

  .stats h3 .small {
    font-size: var(--fz64);
    font-size: 64px;
  }

  .ratio {
    margin-top: 32px;
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .ratio .ratio-text {
    flex: 1;
  }

  .ratio h4 {
    color: var(--main-red);
    /* font-size: var(--fz32); */
    font-size: 32px;
  }

  .ratio h4 .medium {
    /* font-size: var(--fz40); */
    font-size: 40px;
  }

  .ratio h4 .highlight-red {
    /* font-size: var(--fz62); */
    font-size: 62px;
    margin-right: 4px;
  }

  .stats p {
    /* font-size: var(--fz18); */
    font-size: 18px;
    /* font-weight: 500; */
    margin-top: 40px;
  }

  .ratio picture {
    width: 36%;
    /* width: 30%; */
  }

  .ratio img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    max-width: 400px;
  }

  .product-num {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
  }



  /* .product-num h4 {
  color: var(--main-red);
  font-size: var(--fz18);
  line-height: 1;
} */
  .product-num h4 {
    /* font-size: var(--fz32); */
    font-size: 32px;
    line-height: 0.8;
  }


  .product-num > div p {
    margin-top: 0;
  }

  .product-num .highlight-bg-red {
    position: relative;
    /* font-size: var(--fz110); */
    font-size: 110px;
    height: 90%;
    letter-spacing: -0.04em;
  }

  .product-num .highlight-bg-red > span {
    position: relative;
    z-index: 1;
    padding-left: 4px;
  }

  .product-num .highlight-bg-red > span .comma {
    /* font-size: var(--fz80); */
    font-size: 80px;
  }


  .product-num h4 .highlight-bg-red::before {
    content: '';
    width: 105%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .product-num > p:last-of-type {
    max-width: 500px;
    width: 50%;
    margin-top: 40px;
    margin-right: 40px;
  }

  .product-num .ml {
    /* font-size: var(--fz40); */
    font-size: 40px;
    margin-left: 8px;
    padding-top: 10px;
  }


}

@media (min-width:1200px) {

  .stats h3 .highlight-red-from-left {
    /* font-size: var(--fz111); */
    font-size: 111px;
  }

  .stats h3 .small {
    /* font-size: var(--fz90); */
    font-size: 90px;
  }

  .ratio {
    gap: 60px;
    margin-right: 40px;
  }

  .ratio .ratio-text {
    margin-top: 50px;
  }

  .ratio picture {
    width: 41%;
  }

  .stats .show-onlyPC {
    display: block;
  }
  .stats .show-onlySP {
    display: none;
  }
}

/***************************************
Movies
***************************************/
.movies {
  background-color: var(--main-red);
  padding: 40px 15px;
}

.movies-container {
  max-width: 500px;
  margin: 0 auto;
}

.movie-wrapper {
  position: relative;
  width: fit-content;
  height: fit-content;
}

.movies h3 {
  font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
  /* font-size: var(--fz40); */
  font-size: 40px;
  color: #fff;
}

.movies-list {
  margin: 20px auto 0;
  background: #fff;
  border-radius: 20px;
  padding: 20px 30px;
}

.movies-list .logo {
  display: block;
  width: 229px;
  height: auto;
  margin: 0 auto;
}

.movies-list ul {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.movies-list ul h4 {
  text-align: center;
  /* font-size: 1rem; */
  font-size: 16px;
}

.movies-list ul .bts h4 {
  color: #fff;
  background: #000;
  padding: 5px;
  width: fit-content;
  margin: 0 auto;
  line-height: 1;
}

.movies-list ul h4::after {
  content: '';
  display: block;
  width: 184px;
  height: 21px;
  background-image: url("../img/deco_movie.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin: 0 auto;
}

.movies-list ul .bts h4::after {
  content: none;
}

.movie-wrapper {
  margin-top: 10px;
  width: 100%;
  aspect-ratio: 283 / 161;
  height: auto;
  /* height: fit-content; */
}

.bts .movie-wrapper {
  width: 75.6%;
  height: auto;
  margin-inline: auto;
}

.movie-wrapper button {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.movie-wrapper button:hover {
  opacity: 1;
}

.movie-wrapper button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-wrapper button::after {
  content: '';
  width: 11.7%;
  aspect-ratio: 1 / 1;
  height: auto;
  background-image: url("../img/btn_movie_play.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.movie-wrapper button::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
}

.movie-wrapper button:hover::before {
  background-color: rgba(255,255,255,0.2);
}

.movie-wrapper iframe {
  width: 100% !important;
  /* aspect-ratio: 283 / 161; */
  height: 100% !important;
  /* box-shadow: 0 4px 44px 0 rgba(0, 0, 0, 0.25); */
}

@media (min-width:768px) {
  .movies {
    padding: 60px 15px;
  }

  .movies-container {
    max-width: 1000px;
  }

  /* .movie-wrapper {
    position: relative;
    width: fit-content;
    height: fit-content;
  } */

  .movies h3 {
    /* font-size: var(--fz140); */
    font-size: 140px;
    color: #fff;
    line-height: 1;
  }

  .movies h3 span {
    /* font-size: var(--fz124); */
    font-size: 124px;
  }

  .movies-list {
    margin: 60px auto 0;
    /* background: #fff; */
    /* border-radius: 20px; */
    padding: 50px 100px;
  }

  .movies-list .logo {
    /* display: block; */
    width: 250px;
    /* height: auto;
    margin: 0 auto; */
  }

  .movies-list ul {
    margin: 10px auto 0;
    /* display: flex;
    flex-direction: column; */
    gap: 70px;
    max-width: 762px;
  }

  .movies-list ul h4 {
    text-align: center;
    /* font-size: var(--fz24); */
    font-size: 24px;
  }

  .movies-list ul .bts h4 {
    /* color: #fff;
    background: #000; */
    padding: 5px;
    /* width: fit-content;
    margin: 0 auto;
    line-height: 1; */
  }

  .movies-list ul h4::after {
    /* content: '';
    display: block; */
    width: 309px;
    height:36px;
    /* background-image: url("../img/deco_movie.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    margin: 0 auto; */
  }

  /* .movies-list ul .bts h4::after {
    content: none;
  } */

  .movie-wrapper {
    margin-top: 20px;
    width: 100%;
    height: fit-content;
  }

  .bts .movie-wrapper {
    width: 75.6%;
    margin-inline: auto;
  }

  .movie-wrapper button {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  /* .movie-wrapper button:hover {
    opacity: 1;
  } */

  /* .movie-wrapper button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  } */

  .movie-wrapper button::after {
    /* content: ''; */
    width: 11.7%;
    /* aspect-ratio: 1 / 1; */
    /* height: auto; */
    /* background-image: url("../img/btn_movie_play.svg"); */
    /* background-repeat: no-repeat; */
    /* background-size: contain; */
    /* position: absolute; */
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
  }

  /* .movie-wrapper button::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
  } */

  /* .movie-wrapper button:hover::before {
    background-color: rgba(255,255,255,0.2);
  } */

  .movie-wrapper iframe {
    /* width: 100%;
    aspect-ratio: 283 / 161;
    height: auto; */
    box-shadow: 0 4px 44px 0 rgba(0, 0, 0, 0.25);
  }
}

/***************************************
導入事例
***************************************/
.case-studies {
  padding: 40px 15px;
  background: #fff;
}

.case-studies-container {
  max-width: 500px;
  margin-inline: auto;
}

.case-studies hgroup h3 {
  /* font-size: var(--fz40); */
  font-size: 40px;
  color: var(--main-red);
  line-height: 1;
}

.case-studies hgroup h3 + p {
  /* font-size: var(--fz18); */
  font-size: 18px;
  margin-top: 10px;
}

.case-studies-contents {
  text-align: center;
  padding: 50px 0;
  color: var(--main-red);
  margin-top: 30px;
  font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
}

.case-studies-contents p:first-of-type {
  /* font-size: var(--fz30); */
  font-size: 30px;
}
.case-studies-contents p:nth-of-type(2) {
  /* font-size: 1rem; */
  font-size: 16px;
}

@media (min-width:768px) {
  .case-studies {
    padding: 60px 15px;
    /* background: #fff; */
  }

  .case-studies-container {
    max-width: 1000px;

  }

  .case-studies hgroup h3 {
    /* font-size: var(--fz120); */
    font-size: 120px;
    /* color: var(--main-red); */
  }

  .case-studies hgroup h3 + p {
    /* font-size: var(--fz32); */
    font-size: 32px;
    margin-top: 20px;
  }

  .case-studies-contents {
    /* text-align: center; */
    padding: 60px 0;
    /* color: var(--main-red); */
    margin-top: 56px;
    /* font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif; */
  }
  .case-studies-contents p:first-of-type {
    /* font-size: var(--fz60); */
    font-size: 60px;
  }
  .case-studies-contents p:nth-of-type(2) {
    /* font-size: var(--fz24); */
    font-size: 24px;
  }
}

/***************************************
お知らせ
***************************************/
.news {
  background: var(--main-red);
  padding: 40px 15px;
}

.news-container {
  background: #fff;
  border-radius: 20px;
  padding: 30px 15px 40px;
  max-width: 500px;
  margin-inline: auto;
}

.news-container h3 {
  /* font-size: var(--fz24); */
  font-size: 24px;
  width: fit-content;
  margin: 0 auto;
}

.news-container h3::after {
  content: '';
  display: block;
  width: 43px;
  height: 4px;
  border-radius: 2px;
  background-color: var(--main-red);
  margin: 20px auto 0;
}

.news-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", serif;
}

.news-list li {
  border-top: 1px solid #D9D9D9;
}

.news-list li:last-child {
  border-bottom: 1px solid #D9D9D9;
}

.news-list li a,
.news-list li > div {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-list li .article-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.news-list li .article-info time {
  font-weight: 400;
}

.news-list li .article-info .tags {
  /* font-size: var(--fz12); */
  font-size: 12px;
  font-weight: 600;
  color: var(--main-red);
  display: flex;
  gap: 5px;
}

.news-list li .article-info .tags span {
  display: inline-block;
  width: 87px;
  border: 1px solid var(--main-red);
  border-radius: 5px;
  text-align: center;
  line-height: 1;
  padding: 4px;
}

.news-list li .article-title {
  /* font-size: var(--fz14); */
  font-size: 14px;
  font-weight: 400;
}

.news-list li .new {
  margin: 0 0 0 4px;
  width: fit-content;
  color: #fff;
  background-color: var(--main-red);
  /* font-size: var(--fz12); */
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
  border-radius: 5px;
  padding: 0 8px;
}

.news-list li .title-wrapper {
	display: flex;
	align-items: center;
}

@media (min-width:768px) {
  .news {
    /* background: var(--main-red); */
    padding: 60px 15px;
  }

  .news-container {
    /* background: #fff; */
    /* border-radius: 20px; */
    padding: 40px 40px 30px;
    max-width: 1200px;
    /* margin-inline: auto; */
  }

  .news-container h3 {
    /* font-size: var(--fz30); */
    font-size: 30px;
    /* width: fit-content;
    margin: 0 auto; */
  }

  .news-list {
    margin-top: 40px;
    /* display: flex;
    flex-direction: column;
    font-family: "Noto Sans JP", serif; */
  }

  .news-list li {
    /* border-top: 1px solid #D9D9D9; */
  }

  /* .news-list li:last-child {
    border-bottom: 1px solid #D9D9D9;
    } */

  .news-list li a,
	.news-list li > div {
    padding: 25px 0;
    /* display: flex; */
    align-items: center;
    flex-direction: row;
    gap: 24px;
  }

  .news-list li .article-info {
    /* display: flex; */
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }

  .news-list li .article-info time {
    /* font-weight: 400; */
    /* font-size: var(--fz18); */
    font-size: 18px;
    min-width: 144px;
  }

  .news-list li .article-info .tags {
    /* font-size: var(--fz14); */
    font-size: 14px;
    /* font-weight: 600; */
    /* color: var(--main-red); */
    /* display: flex; */
    flex-direction: column;
    /* gap: 5px; */
  }

  .news-list li .article-info .tags span {
    display: inline-block;
    width: 97px;
    /* border: 1px solid var(--main-red); */
    /* border-radius: 5px; */
    /* text-align: center; */
    /* line-height: 1; */
    padding: 4px 0;
  }

  .news-list li .article-title {
    /* font-size: 1rem; */
    font-size: 16px;
    /* font-weight: 400;   */
  }

  .news-list li .new {
    /* width: fit-content;
    color: #fff;
    background-color: var(--main-red); */
    /* font-size: var(--fz14); */
    font-size: 14px;
    /* font-weight: 700;
    line-height: 1.7;
    border-radius: 5px; */
    padding: 0 8px;
		margin-left: 4px;
  }
}

@media (min-width:1200px) {
  .news-container {
    padding: 40px 100px 60px;
  }
}


/***************************************
TOPへ戻るボタン
***************************************/
.back-to-top {
  position: fixed;
  right: 16px;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  width: 58px;
  height: 58px;
  font-size: 0;
  border-radius: 50%;
  transition: opacity 0.4s ease,visibility 0.4s ease, transform 0.4s ease;
  cursor: pointer;
  background-image: url("../img/btn_back_to_top.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.back-to-top:hover {
  transform: scale(1.1);
}


.back-to-top.btn-show {
  visibility: visible;
  opacity: 1;
  cursor: pointer;
}

.back-to-top.btn-show:hover {
  opacity: 0.7;
}



@media (min-width:1300px) {
  .back-to-top {
    right: 76px;
    width: 58px;
    height: 58px;
  }

}
