@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: "Noto Sans JP", sans-serif;
  color: #111;
  line-height: 2;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  background: linear-gradient(to bottom, #F7F7F7 0, #FCFBF9 50%, #F7F7F7 100%);
  font-size: 1rem;
}
@media (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}

img, picture, svg, video, canvas {
  max-width: 100%;
  display: block;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}

button {
  cursor: pointer;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}

i, em {
  font-style: normal;
}

.pc-br {
  display: block;
}
@media (max-width: 767px) {
  .pc-br {
    display: none;
  }
}

.sp-br {
  display: none;
}
@media (max-width: 767px) {
  .sp-br {
    display: block;
  }
}

/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.inner {
  padding: 0 clamp(60px, 18.75vw - 160px, 240px);
  margin: 0 auto;
  box-sizing: border-box;
}
@media all and (max-width: 1280px) {
  .inner {
    padding: 0 clamp(40px, 3.91vw + 10px, 60px);
  }
}
@media all and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.inner2 {
  padding: 0 clamp(40px, 21.88vw - 240px, 60px);
  margin: 0 auto;
  box-sizing: border-box;
}
@media all and (max-width: 1280px) {
  .inner2 {
    padding: 0 clamp(30px, 1.95vw + 15px, 40px);
  }
}
@media all and (max-width: 767px) {
  .inner2 {
    padding: 0 20px;
  }
}

/*------------------------------------------------------------
nav関連
------------------------------------------------------------*/
.smenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  z-index: 1000;
}
.smenu.act {
  mix-blend-mode: difference;
}
.smenu .logo {
  z-index: 10001;
}
.smenu .logo img {
  height: 35px;
  width: auto;
}
@media all and (max-width: 767px) {
  .smenu .logo img {
    height: 25px;
    width: auto;
  }
  .smenu {
    padding: 0 10px 0 10px;
  }
}

.nav-open .smenu {
  mix-blend-mode: unset;
}
.nav-open .smenu.act {
  mix-blend-mode: unset;
}

.nav-content ul {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 40px;
}
.nav-content a {
  font-size: 14px;
  color: white;
  font-weight: bold;
  position: relative;
  display: block;
}
.nav-content a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}
.nav-content a:hover:before {
  width: 100%;
}
.nav-content .drpw {
  position: relative;
}
.nav-content .drpw .drp {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: -57px;
  left: 0;
  transition: all 0.3s ease;
}
.nav-content .drpw:hover .drp {
  opacity: 1;
  visibility: visible;
}

@media all and (max-width: 1200px) {
  .nav-btn {
    position: relative;
    z-index: 1100;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav-btn span, .nav-btn span::before, .nav-btn span::after {
    content: "";
    position: absolute;
    left: 50%;
    translate: -50% 0;
    width: 30px;
    height: 2px;
    background: white;
    transition: 0.3s;
    border-radius: clamp(3px, calc(0.1960784314vw + 2.2352941176px), 6px);
  }
  .nav-btn span {
    top: 50%;
    translate: -50% -50%;
  }
  .nav-btn span::before {
    top: -9px;
  }
  .nav-btn span::after {
    top: 9px;
  }
  .nav-open .nav-btn span {
    background: transparent;
  }
  .nav-open .nav-btn span::before {
    top: 0;
    rotate: 45deg;
  }
  .nav-open .nav-btn span::after {
    top: 0;
    rotate: -45deg;
  }
  .nav-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to top, #730000 0%, #CE001A 100%);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.4s;
  }
  .nav-content ul {
    list-style: none;
    text-align: center;
    display: block;
  }
  .nav-content ul li {
    margin-bottom: 0;
  }
  .nav-content ul li a {
    padding: 8px 0;
    font-size: 16px;
    font-weight: bold;
    display: block;
  }
  .nav-content .drpw {
    position: relative;
  }
  .nav-content .drpw .drp {
    opacity: 1;
    visibility: visible;
    position: relative;
    bottom: unset;
    display: flex;
    gap: 0 10px;
    padding: 8px 0 16px 0;
    border-top: 1px dotted white;
  }
  .nav-content .drpw .drp a {
    font-size: 14px;
    padding: 0;
  }
  .nav-open .nav-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.grad_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(350px, calc(3.2679738562vw + 337.2549019608px), 400px);
  max-width: 100%;
  height: 72px;
  margin: 0 auto;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  background: linear-gradient(270deg, #300003 0%, #300003 25%, #CE011A 51%, #CE011A 100%);
  background-size: 200% auto;
  background-position: 0% 50%;
  transition: all 0.5s ease;
}
.grad_btn:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(87, 111, 230, 0.3);
}

.grad_btn:hover {
  color: #fff;
  background-position: 99% 50%;
}

/*------------------------------------------------------------
inview css
------------------------------------------------------------*/
.anm {
  opacity: 0;
}

.anm_all.trigger {
  opacity: 1;
}
.anm_all .item {
  opacity: 0;
}
.anm_all .item.up {
  animation: up 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}

.trigger {
  opacity: 0;
}
.trigger.up {
  animation: up 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}
.trigger.blur {
  animation: blur 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}
.trigger.delay0 {
  animation-delay: 0ms;
}
.trigger.delay1 {
  animation-delay: 100ms;
}
.trigger.delay2 {
  animation-delay: 200ms;
}
.trigger.delay3 {
  animation-delay: 300ms;
}
.trigger.delay4 {
  animation-delay: 400ms;
}
.trigger.delay5 {
  animation-delay: 500ms;
}
.trigger.delay6 {
  animation-delay: 600ms;
}
.trigger.delay7 {
  animation-delay: 700ms;
}
.trigger.delay8 {
  animation-delay: 800ms;
}
.trigger.delay9 {
  animation-delay: 900ms;
}
.trigger.delay10 {
  animation-delay: 1000ms;
}
.trigger.delay11 {
  animation-delay: 1100ms;
}
.trigger.delay12 {
  animation-delay: 1200ms;
}
.trigger.delay13 {
  animation-delay: 1300ms;
}
.trigger.delay14 {
  animation-delay: 1400ms;
}
.trigger.delay15 {
  animation-delay: 1500ms;
}
.trigger.delay16 {
  animation-delay: 1600ms;
}
.trigger.delay17 {
  animation-delay: 1700ms;
}
.trigger.delay18 {
  animation-delay: 1800ms;
}
.trigger.delay19 {
  animation-delay: 1900ms;
}
.trigger.delay20 {
  animation-delay: 2000ms;
}

@keyframes up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes blur {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.btn_cm {
  text-align: center;
  place-content: center;
  display: block;
  margin: 0 auto;
  width: clamp(300px, calc(1.3071895425vw + 294.9019607843px), 320px);
  max-width: 100%;
  height: 64px;
  background: #000;
  color: white;
  transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  background: linear-gradient(270deg, #D01126 0%, #D01126 50%, #000 50%, #000 100%);
  background-size: 200% auto;
  background-position: 0% 50%;
}
.btn_cm:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background-position: 100% 50%;
}
.btn_cm.wh {
  background: white;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.btn_cm.wh:hover {
  background: #000;
  color: white;
}
.btn_cm.rd {
  background: #F50C0C;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.btn_cm.rd:hover {
  background: #000;
}

.recom {
  padding: 180px 0 0 0;
  box-sizing: border-box;
  position: relative;
}
.recom h2 {
  color: #A6A6A6;
}
.recom .lead {
  margin-top: 40px;
}
.recom .line-left {
  position: absolute;
  top: -15%;
  left: 10%;
  height: 80%;
  width: 8vw;
  max-width: 150px;
  transform: scale(1, 0);
  transform-origin: top;
  background: linear-gradient(to top, #CE001A 0%, #730000 100%);
}
.recom .line-left.trigger {
  opacity: 1;
  animation: drawLineRight6 0.6s 0.6s linear forwards;
}
@keyframes drawLineRight6 {
  0% {
    opacity: 1;
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}
.recom .line-w {
  position: absolute;
  top: 36%;
  left: 10%;
  width: 100%;
  height: 8vw;
  max-height: 150px;
  transform: scale(0, 1);
  transform-origin: left;
  background: linear-gradient(to right, #CE001A 0%, #730000 100%);
}
.recom .line-w.trigger {
  opacity: 1;
  animation: drawLineRight7 0.6s 0.3s linear forwards;
}
@keyframes drawLineRight7 {
  0% {
    opacity: 1;
    transform: scale(0, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@media all and (max-width: 1000px) {
  .recom {
    padding: 120px 0 0 0;
  }
}
@media all and (max-width: 767px) {
  .recom {
    padding: 90px 0 0 0;
  }
  .recom .lead {
    margin-top: 30px;
  }
  .recom .line-left {
    left: 17%;
    width: 40px;
  }
  .recom .line-w {
    top: 46%;
    height: 40px;
  }
}

.slw {
  margin-top: 120px;
  position: relative;
}
.slw .num {
  position: absolute;
  line-height: 1;
  font-family: Inter, sans-serif;
  color: #D01126;
  font-size: 60px;
  font-weight: 700;
  left: 10px;
  top: 0;
  z-index: 3;
}
.slw a {
  margin-top: 30px;
  display: block;
  position: relative;
}
.slw a:hover .img img {
  transform: scale(1.08);
  filter: unset;
}
.slw .txt-area {
  position: absolute;
  text-align: center;
  color: white;
  font-weight: bold;
  line-height: 1;
  place-content: center;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
.slw .eg {
  font-size: 20px;
}
.slw .jp {
  margin-top: 10px;
  font-size: 16px;
}
.slw .in2 {
  display: flex;
  flex-direction: column; /* 縦並びにする */
  justify-content: space-between; /* 余白を均等に分ける */
}
.slw .in2 a:nth-of-type(2) {
  margin-top: 0;
}
.slw .in2 .bd {
  position: absolute;
  right: 0;
  top: 0;
  color: white;
  width: 92px;
  height: 24px;
  background: #000;
  text-align: center;
  line-height: 1;
  place-content: center;
  font-size: 14px;
  font-weight: bold;
  z-index: 10 !important;
}
.slw .nv {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
}
.slw .swiper-button-next, .slw .swiper-button-prev {
  background: unset;
  color: unset;
  cursor: pointer;
  padding: unset;
  position: absolute;
  top: unset;
  -webkit-transform: unset;
  transform: unset;
  width: 64px;
  height: 64px;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.slw .swiper-button-next:hover, .slw .swiper-button-prev:hover {
  opacity: 0.7;
}
.slw .swiper-button-next:after, .slw .swiper-button-prev:after {
  content: none;
}
.slw .swiper-button-prev {
  left: 20px;
}
.slw .swiper-button-next {
  right: 20px;
}
.slw .img {
  overflow: hidden;
}
.slw .img img {
  filter: sepia(100%);
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
@media all and (max-width: 1000px) {
  .slw {
    margin-top: 60px;
  }
  .slw .num {
    font-size: 40px;
  }
  .slw a {
    margin-top: 21px;
  }
}
@media all and (max-width: 767px) {
  .slw {
    margin-top: 60px;
  }
  .slw .num {
    font-size: 40px;
  }
  .slw a {
    margin-top: 25px;
  }
  .slw .txt-area {
    width: 100%;
  }
  .slw .eg {
    font-size: 16px;
  }
  .slw .jp {
    margin-top: 10px;
    font-size: 13px;
  }
  .slw .in2 {
    display: flex;
    flex-direction: column; /* 縦並びにする */
    justify-content: space-between; /* 余白を均等に分ける */
  }
  .slw .in2 a:nth-of-type(2) {
    margin-top: 0;
  }
  .slw .in2 .bd {
    width: 90px;
    height: 24px;
    font-size: 12px;
  }
  .slw .swiper-button-next, .slw .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .slw .swiper-button-prev {
    left: 10px;
  }
  .slw .swiper-button-next {
    right: 10px;
  }
}

.recom-und {
  padding: 140px 0 0 0;
  margin-bottom: 140px;
}
@media all and (max-width: 767px) {
  .recom-und {
    padding: 70px 0 0 0;
    margin-bottom: 70px;
  }
}

.ttl-bx1 {
  position: relative;
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
.ttl-bx1 .eg {
  font-family: Inter, sans-serif;
  font-size: clamp(32px, calc(1.8300653595vw + 24.862745098px), 60px);
  font-weight: 700;
}
.ttl-bx1 .eg:first-letter {
  color: #D01126;
}
.ttl-bx1 .eg2:first-letter {
  color: #730000;
}
.ttl-bx1 h2 {
  font-size: 16px;
  font-weight: normal;
  position: relative;
  padding-left: 24px;
  margin-left: 24px;
  top: -12px;
}
.ttl-bx1 h2:before {
  content: "/";
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 0;
  margin-left: 0;
  width: 100%;
  height: 100%;
}
@media all and (max-width: 767px) {
  .ttl-bx1 h2 {
    font-size: 13px;
    padding-left: 12px;
    margin-left: 12px;
    top: -5px;
  }
}

.ft-contact {
  background: url("../images/cont-bg.webp") center center/cover;
  height: 530px;
  place-content: center;
  text-align: center;
  color: white;
}
.ft-contact h2 {
  font-family: Inter, sans-serif;
  font-size: clamp(20px, calc(0.7843137255vw + 16.9411764706px), 32px);
  font-weight: 700;
}
.ft-contact .in {
  max-width: 700px;
  margin: 0 auto;
}
.ft-contact .txt {
  text-align: left;
  margin: 30px 0 60px 0;
}
.ft-contact .c-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
}
@media all and (max-width: 767px) {
  .ft-contact {
    height: unset;
    padding: 80px 0;
  }
  .ft-contact .in {
    width: 90%;
    margin: 0 auto;
  }
  .ft-contact .txt {
    text-align: left;
    margin: 15px 0 30px 0;
  }
  .ft-contact .c-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 0;
  }
}

footer {
  padding: 80px 0;
  text-align: center;
  font-family: Inter, sans-serif;
}
footer .ft-logo {
  display: block;
  width: 250px;
  margin: 0 auto;
}
footer .ft-tx {
  margin: 20px 0 20px 0;
}
footer .tels-area {
  width: 250px;
  margin: 0 auto;
  text-align: right;
  line-height: 1;
  background: url("../images/smp.webp") center left no-repeat;
  background-size: 20px auto;
}
footer .tels-area .time {
  font-size: 12px;
  font-weight: bold;
  margin-top: 5px;
}
footer .tels-area a {
  font-size: 28px;
  font-weight: bold;
}
footer .menus {
  display: inline-block;
  padding: 40px 0;
  margin-top: 20px;
  position: relative;
}
footer .menus:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -25%;
  width: 150%;
  height: 1px;
  background: #ECEAEA;
}
footer .menus .in {
  display: flex;
  justify-content: flex-start;
  gap: 0 40px;
}
footer .menus a {
  display: block;
  font-size: 14px;
}
footer .sns {
  display: inline-block;
  padding: 50px 0;
  box-sizing: border-box;
}
footer .sns .in {
  display: flex;
  justify-content: flex-start;
  gap: 0 24px;
}
footer .sns .in img {
  height: 32px;
  width: auto;
}
footer .copyright {
  font-size: 12px;
  color: #777777;
}
@media all and (max-width: 767px) {
  footer {
    padding: 60px 0;
  }
  footer .ft-logo {
    width: 200px;
  }
  footer .ft-tx {
    margin: 20px 0 20px 0;
  }
  footer .tels-area {
    width: 240px;
  }
  footer .menus {
    padding: 20px 0;
    margin-top: 10px;
  }
  footer .menus .in {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  footer .menus a {
    display: block;
    font-size: 14px;
    padding: 5px 0;
  }
  footer .sns {
    display: inline-block;
    padding: 50px 0;
    box-sizing: border-box;
  }
  footer .sns .in {
    display: flex;
    justify-content: flex-start;
    gap: 0 24px;
  }
  footer .sns .in img {
    height: 32px;
    width: auto;
  }
}
@media all and (max-width: 767px) and (max-width: 767px) {
  footer .sns {
    padding: 30px 0;
  }
}
@media all and (max-width: 767px) {
  footer .copyright {
    font-size: 12px;
    color: #777777;
  }
}
@media all and (max-width: 767px) and (max-width: 767px) {
  footer .copyright {
    font-size: 10px;
    font-weight: bold;
  }
}

.under-mv {
  height: 600px;
  place-content: center;
  color: white;
  text-align: center;
  position: relative;
}
@media all and (max-width: 767px) {
  .under-mv {
    height: 450px;
  }
}

.under-ttl {
  line-height: 1;
}
.under-ttl .eg {
  font-size: clamp(30px, calc(1.9607843137vw + 22.3529411765px), 60px);
  font-family: Inter, sans-serif;
  font-weight: 700;
}
.under-ttl h1 {
  font-size: clamp(14px, calc(0.1307189542vw + 13.4901960784px), 16px);
  margin-top: 20px;
}

.bread {
  position: absolute;
  bottom: 0;
  left: 0;
  height: auto;
  width: 100%;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
}
.bread a {
  position: relative;
  padding-right: 24px;
}
.bread a:before {
  content: ">";
  position: absolute;
  top: 0;
  right: 7px;
  margin-top: 0;
  margin-left: 0;
}
.bread a i {
  position: relative;
}
.bread a i:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: white;
  transition: all 0.3s ease;
}
.bread a:hover i:before {
  width: 100%;
}
.bread .in {
  display: inline-block;
}
.bread .in2 {
  display: flex;
  justify-content: flex-start;
}
.bread.bread2 {
  color: #000;
}
.bread.bread2 a i:before {
  background: #000;
}
.bread.bread3 {
  color: #000;
  position: relative;
  text-align: left;
  font-weight: 400;
  margin-top: 10px;
}
.bread.bread3 a:before {
  right: -30px;
}
.bread.bread3 a i:before {
  background: #000;
}
@media all and (max-width: 767px) {
  .bread {
    padding: 8px 0;
    font-size: 12px;
  }
}

/*# sourceMappingURL=base.css.map */
